diff options
author | Paul S. Owen <psotfx@users.sourceforge.net> | 2003-05-08 13:17:40 +0000 |
---|---|---|
committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2003-05-08 13:17:40 +0000 |
commit | 874a3973150a94b65dd9908093c46f787377eaed (patch) | |
tree | 57a6ea79825c31dd86d20db72bc068e1775d4aa5 | |
parent | 0a73232ab040d85c7a6a3c1309bce5ff35e9f275 (diff) | |
download | forums-874a3973150a94b65dd9908093c46f787377eaed.tar forums-874a3973150a94b65dd9908093c46f787377eaed.tar.gz forums-874a3973150a94b65dd9908093c46f787377eaed.tar.bz2 forums-874a3973150a94b65dd9908093c46f787377eaed.tar.xz forums-874a3973150a94b65dd9908093c46f787377eaed.zip |
forum_link_track to forum_flags & 1
git-svn-id: file:///svn/phpbb/trunk@3994 89ea8834-ac86-4346-8a33-228a782c2dd0
-rw-r--r-- | phpBB/includes/functions_display.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions_display.php b/phpBB/includes/functions_display.php index 2d83da22f8..a0f4f6818c 100644 --- a/phpBB/includes/functions_display.php +++ b/phpBB/includes/functions_display.php @@ -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, |