aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/viewforum.php
diff options
context:
space:
mode:
authorPaul S. Owen <psotfx@users.sourceforge.net>2001-08-04 00:21:12 +0000
committerPaul S. Owen <psotfx@users.sourceforge.net>2001-08-04 00:21:12 +0000
commit1a48db4c126d095b7962d984ebd7040bc2cad0d6 (patch)
treecf5713f2ee991653c290c3d1803128e8781baf91 /phpBB/viewforum.php
parent605356a6ca9174f6d448f93405453ef648237244 (diff)
downloadforums-1a48db4c126d095b7962d984ebd7040bc2cad0d6.tar
forums-1a48db4c126d095b7962d984ebd7040bc2cad0d6.tar.gz
forums-1a48db4c126d095b7962d984ebd7040bc2cad0d6.tar.bz2
forums-1a48db4c126d095b7962d984ebd7040bc2cad0d6.tar.xz
forums-1a48db4c126d095b7962d984ebd7040bc2cad0d6.zip
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
Diffstat (limited to 'phpBB/viewforum.php')
-rw-r--r--phpBB/viewforum.php2
1 files changed, 1 insertions, 1 deletions
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']))
{