|
From: Paul S. O. <ps...@us...> - 2002-04-03 14:39:02
|
Update of /cvsroot/phpbb/phpBB2/includes
In directory usw-pr-cvs1:/tmp/cvs-serv10584/includes
Modified Files:
functions_post.php
Log Message:
Minor error in stats updating when deleting first post of a topic ... topic replies was not decremented
Index: functions_post.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/includes/functions_post.php,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -r1.8 -r1.9
*** functions_post.php 2 Apr 2002 21:13:47 -0000 1.8
--- functions_post.php 3 Apr 2002 14:38:56 -0000 1.9
***************
*** 440,444 ****
if ( $row = $db->sql_fetchrow($result) )
{
! $topic_update_sql = 'topic_first_post_id = ' . $row['post_id'];
}
}
--- 440,444 ----
if ( $row = $db->sql_fetchrow($result) )
{
! $topic_update_sql = 'topic_replies = topic_replies - 1, topic_first_post_id = ' . $row['post_id'];
}
}
|