diff options
author | Paul S. Owen <psotfx@users.sourceforge.net> | 2001-08-04 00:21:12 +0000 |
---|---|---|
committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2001-08-04 00:21:12 +0000 |
commit | 1a48db4c126d095b7962d984ebd7040bc2cad0d6 (patch) | |
tree | cf5713f2ee991653c290c3d1803128e8781baf91 /phpBB/viewforum.php | |
parent | 605356a6ca9174f6d448f93405453ef648237244 (diff) | |
download | forums-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.php | 2 |
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'])) { |