mirror of
https://github.com/phpbb/phpbb.git
synced 2025-09-01 12:22:58 +02:00
Various updates with any luck they fix a few minor issues without causing new ones ...
git-svn-id: file:///svn/phpbb/trunk@2462 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
@@ -255,7 +255,7 @@ if ( !empty($HTTP_POST_VARS['topicdays']) || !empty($HTTP_GET_VARS['topicdays'])
|
||||
}
|
||||
$row = $db->sql_fetchrow($result);
|
||||
|
||||
$topics_count = $row['forum_topics'];
|
||||
$topics_count = ( $forum_row['forum_topics'] ) ? $forum_row['forum_topics'] : 1;
|
||||
$limit_topics_time = "AND p.post_time >= $min_topic_time";
|
||||
|
||||
if ( !empty($HTTP_POST_VARS['topicdays']) )
|
||||
@@ -265,7 +265,7 @@ if ( !empty($HTTP_POST_VARS['topicdays']) || !empty($HTTP_GET_VARS['topicdays'])
|
||||
}
|
||||
else
|
||||
{
|
||||
$topics_count = $forum_row['forum_topics'];
|
||||
$topics_count = ( $forum_row['forum_topics'] ) ? $forum_row['forum_topics'] : 1;
|
||||
|
||||
$limit_topics_time = '';
|
||||
$topic_days = 0;
|
||||
|
Reference in New Issue
Block a user