|
From: Paul S. O. <ps...@us...> - 2002-03-18 13:44:25
|
Update of /cvsroot/phpbb/phpBB2
In directory usw-pr-cvs1:/tmp/cvs-serv29193
Modified Files:
posting.php
Log Message:
Morons have congregated in my head for a moron-party
Index: posting.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/posting.php,v
retrieving revision 1.150
retrieving revision 1.151
diff -C2 -r1.150 -r1.151
*** posting.php 18 Mar 2002 13:35:42 -0000 1.150
--- posting.php 18 Mar 2002 13:44:21 -0000 1.151
***************
*** 543,547 ****
if ( $mode != 'editpost' )
{
! update_post_stats($mode, $post_data, $forum_id, $topic_id, $post_id, $post_data['poster_id']);
}
--- 543,548 ----
if ( $mode != 'editpost' )
{
! $user_id = ( $mode == 'reply' || $mode == 'newtopic' ) ? $userdata['user_id'] : $post_data['poster_id'];
! update_post_stats($mode, $post_data, $forum_id, $topic_id, $post_id, $user_id);
}
|