From 6ea42eacfd47f49c5b845f5c0ef7f0c360577989 Mon Sep 17 00:00:00 2001 From: "Paul S. Owen" Date: Wed, 3 Apr 2002 14:38:56 +0000 Subject: [PATCH] Minor error in stats updating when deleting first post of a topic ... topic replies was not decremented git-svn-id: file:///svn/phpbb/trunk@2468 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/includes/functions_post.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpBB/includes/functions_post.php b/phpBB/includes/functions_post.php index 03daee23fe..3d5e8e6b24 100644 --- a/phpBB/includes/functions_post.php +++ b/phpBB/includes/functions_post.php @@ -439,7 +439,7 @@ function update_post_stats(&$mode, &$post_data, &$forum_id, &$topic_id, &$post_i if ( $row = $db->sql_fetchrow($result) ) { - $topic_update_sql = 'topic_first_post_id = ' . $row['post_id']; + $topic_update_sql = 'topic_replies = topic_replies - 1, topic_first_post_id = ' . $row['post_id']; } } }