From 1a48db4c126d095b7962d984ebd7040bc2cad0d6 Mon Sep 17 00:00:00 2001 From: "Paul S. Owen" Date: Sat, 4 Aug 2001 00:21:12 +0000 Subject: [PATCH] I am an idiot ... fixed wrong var name breaking the topicday select git-svn-id: file:///svn/phpbb/trunk@810 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/viewforum.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpBB/viewforum.php b/phpBB/viewforum.php index 21c031249b..ed06aa808d 100644 --- a/phpBB/viewforum.php +++ b/phpBB/viewforum.php @@ -193,7 +193,7 @@ if(!empty($HTTP_POST_VARS['topicdays']) || !empty($HTTP_GET_VARS['topicdays'])) } list($topics_count) = $db->sql_fetchrow($result); - $limit_topics_time = "AND ( p.post_time >= $min_post_time OR t.topic_type = " . POST_ANNOUNCE . " ) "; + $limit_topics_time = "AND ( p.post_time >= $min_topic_time OR t.topic_type = " . POST_ANNOUNCE . " ) "; if(!empty($HTTP_POST_VARS['topicdays'])) {