mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-10 13:28:55 +00:00
forum_link_track to forum_flags & 1
git-svn-id: file:///svn/phpbb/trunk@3994 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
0a73232ab0
commit
874a397315
1 changed files with 1 additions and 1 deletions
|
@ -302,7 +302,7 @@ function display_forums($root_data = '', $display_moderators = TRUE)
|
|||
}
|
||||
|
||||
$l_post_click_count = ($row['forum_type'] == FORUM_LINK) ? 'CLICKS' : 'POSTS';
|
||||
$post_click_count = ($row['forum_type'] != FORUM_LINK || $row['forum_link_track']) ? $row['forum_posts'] : '';
|
||||
$post_click_count = ($row['forum_type'] != FORUM_LINK || $row['forum_flags'] & 1) ? $row['forum_posts'] : '';
|
||||
|
||||
$template->assign_block_vars('forumrow', array(
|
||||
'S_IS_CAT' => false,
|
||||
|
|
Loading…
Add table
Reference in a new issue