aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions_display.php
diff options
context:
space:
mode:
authorPaul S. Owen <psotfx@users.sourceforge.net>2003-05-20 12:24:10 +0000
committerPaul S. Owen <psotfx@users.sourceforge.net>2003-05-20 12:24:10 +0000
commit2700723d8bec4acedadf5a6b9af726a44d14acf7 (patch)
tree05044953f9ba31c77efdbe92a3d90202ae3a917e /phpBB/includes/functions_display.php
parent208a3b96bfc5bb2dfb2b0e21fb658c31f062e0f2 (diff)
downloadforums-2700723d8bec4acedadf5a6b9af726a44d14acf7.tar
forums-2700723d8bec4acedadf5a6b9af726a44d14acf7.tar.gz
forums-2700723d8bec4acedadf5a6b9af726a44d14acf7.tar.bz2
forums-2700723d8bec4acedadf5a6b9af726a44d14acf7.tar.xz
forums-2700723d8bec4acedadf5a6b9af726a44d14acf7.zip
Fix forum link redirection when tracking clicks
git-svn-id: file:///svn/phpbb/trunk@4026 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/functions_display.php')
-rw-r--r--phpBB/includes/functions_display.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions_display.php b/phpBB/includes/functions_display.php
index a0f4f6818c..d65fe44c19 100644
--- a/phpBB/includes/functions_display.php
+++ b/phpBB/includes/functions_display.php
@@ -327,7 +327,7 @@ function display_forums($root_data = '', $display_moderators = TRUE)
'U_LAST_POSTER' => $last_poster_url,
'U_LAST_POST' => $last_post_url,
- 'U_VIEWFORUM' => ($row['forum_type'] != FORUM_LINK || $row['forum_link_track']) ? 'viewforum.' . $phpEx . $SID . '&amp;f=' . $row['forum_id'] : $row['forum_link'])
+ 'U_VIEWFORUM' => ($row['forum_type'] != FORUM_LINK || $row['forum_flags'] & 1) ? 'viewforum.' . $phpEx . $SID . '&amp;f=' . $row['forum_id'] : $row['forum_link'])
);
}