From d2d4a073c988003650c09b4695f94051734e91fe Mon Sep 17 00:00:00 2001 From: "Paul S. Owen" Date: Thu, 4 Apr 2002 11:51:25 +0000 Subject: [PATCH] Minor change to cope with a now fixed (I think) situation where last_post_id was set to 0 ... would leave these topics and posts in place during prune git-svn-id: file:///svn/phpbb/trunk@2478 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/includes/prune.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/phpBB/includes/prune.php b/phpBB/includes/prune.php index 0798ec2322..1d2f17e57d 100644 --- a/phpBB/includes/prune.php +++ b/phpBB/includes/prune.php @@ -39,7 +39,8 @@ function prune($forum_id, $prune_date) WHERE t.forum_id = $forum_id AND t.topic_vote = 0 AND t.topic_type <> " . POST_ANNOUNCE . " - AND p.post_id = t.topic_last_post_id"; + AND ( p.post_id = t.topic_last_post_id + OR t.topic_last_post_id = 0 )"; if ( $prune_date != '' ) { $sql .= " AND p.post_time < $prune_date";