|
From: Paul S. O. <ps...@us...> - 2002-02-23 17:54:35
|
Update of /cvsroot/phpbb/phpBB2 In directory usw-pr-cvs1:/tmp/cvs-serv23951 Modified Files: posting.php Log Message: Fixed updating of user post count on deletion Index: posting.php =================================================================== RCS file: /cvsroot/phpbb/phpBB2/posting.php,v retrieving revision 1.147 retrieving revision 1.148 diff -C2 -r1.147 -r1.148 *** posting.php 20 Feb 2002 17:39:03 -0000 1.147 --- posting.php 23 Feb 2002 17:54:32 -0000 1.148 *************** *** 235,238 **** --- 235,239 ---- $post_data['has_poll'] = ( $post_info['topic_vote'] ) ? true : false; $post_data['topic_type'] = $post_info['topic_type']; + $post_data['poster_id'] = $post_info['poster_id']; if ( $post_data['first_post'] && $post_data['has_poll'] ) |