mirror of
https://github.com/phpbb/phpbb.git
synced 2025-01-19 07:08:09 +01:00
just some tiny changes to meet the coding guidelines
git-svn-id: file:///svn/phpbb/trunk@5499 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
e78c215eba
commit
db672ef596
@ -471,7 +471,7 @@ if ($keywords || $author || $search_id)
|
||||
}
|
||||
}
|
||||
|
||||
if ((!$user->data['is_registered']) || (!$config['load_db_lastread']))
|
||||
if (!$user->data['is_registered'] || !$config['load_db_lastread'])
|
||||
{
|
||||
$tracking_topics = (isset($_COOKIE[$config['cookie_name'] . '_track'])) ? unserialize(stripslashes($_COOKIE[$config['cookie_name'] . '_track'])) : array();
|
||||
}
|
||||
@ -492,7 +492,7 @@ if ($keywords || $author || $search_id)
|
||||
{
|
||||
$rowset[$row['topic_id']] = $row;
|
||||
|
||||
if ((!isset($forums[$row['forum_id']])) && ($user->data['is_registered']) && ($config['load_db_lastread']))
|
||||
if (!isset($forums[$row['forum_id']]) && $user->data['is_registered'] && $config['load_db_lastread'])
|
||||
{
|
||||
$forums[$row['forum_id']]['mark_time'] = $row['f_mark_time'];
|
||||
}
|
||||
@ -503,7 +503,7 @@ if ($keywords || $author || $search_id)
|
||||
|
||||
foreach ($forums as $forum_id => $forum)
|
||||
{
|
||||
if (($user->data['is_registered']) && ($config['load_db_lastread']))
|
||||
if ($user->data['is_registered'] && $config['load_db_lastread'])
|
||||
{
|
||||
$topic_tracking_info[$forum_id] = get_topic_tracking($forum_id, $forum['topic_list'], $forum['rowset'], array($forum_id => $forum['mark_time']), ($forum_id) ? false : $forum['topic_list']);
|
||||
}
|
||||
@ -643,8 +643,8 @@ if ($keywords || $author || $search_id)
|
||||
'TOPIC_TITLE' => $topic_title,
|
||||
|
||||
'U_VIEW_TOPIC' => $view_topic_url,
|
||||
'U_VIEW_FORUM' => "viewforum.$phpEx$SID&f=$forum_id",
|
||||
'U_VIEW_POST' => (!empty($row['post_id'])) ? "viewtopic.$phpEx$SID&f=$forum_id&t=" . $row['topic_id'] . '&p=' . $row['post_id'] . '&hilit=' . $u_hilit . '#' . $row['post_id'] : '')
|
||||
'U_VIEW_FORUM' => "{$phpbb_root_path}viewforum.$phpEx$SID&f=$forum_id",
|
||||
'U_VIEW_POST' => (!empty($row['post_id'])) ? "{$phpbb_root_path}viewtopic.$phpEx$SID&f=$forum_id&t=" . $row['topic_id'] . '&p=' . $row['post_id'] . '&hilit=' . $u_hilit . '#' . $row['post_id'] : '')
|
||||
));
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user