|
From: Paul S. O. <ps...@us...> - 2001-10-10 10:45:57
|
Update of /cvsroot/phpbb/phpBB2 In directory usw-pr-cvs1:/tmp/cvs-serv28230 Modified Files: posting.php Log Message: Fixed bug with deleting only post in forum Index: posting.php =================================================================== RCS file: /cvsroot/phpbb/phpBB2/posting.php,v retrieving revision 1.75 retrieving revision 1.76 diff -C2 -r1.75 -r1.76 *** posting.php 2001/10/05 14:13:58 1.75 --- posting.php 2001/10/10 10:45:54 1.76 *************** *** 1125,1129 **** } ! $new_last_sql = ", forum_last_post_id = " . $row['new_post_id']; } else --- 1125,1131 ---- } ! $last_post_id_forum = ( !empty($row['new_post_id']) ) ? $row['new_post_id'] : 0; ! ! $new_last_sql = ", forum_last_post_id = " . $last_post_id_forum; } else |