diff options
author | Paul S. Owen <psotfx@users.sourceforge.net> | 2003-05-20 12:24:10 +0000 |
---|---|---|
committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2003-05-20 12:24:10 +0000 |
commit | 2700723d8bec4acedadf5a6b9af726a44d14acf7 (patch) | |
tree | 05044953f9ba31c77efdbe92a3d90202ae3a917e /phpBB/includes/functions_display.php | |
parent | 208a3b96bfc5bb2dfb2b0e21fb658c31f062e0f2 (diff) | |
download | forums-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.php | 2 |
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 . '&f=' . $row['forum_id'] : $row['forum_link']) + 'U_VIEWFORUM' => ($row['forum_type'] != FORUM_LINK || $row['forum_flags'] & 1) ? 'viewforum.' . $phpEx . $SID . '&f=' . $row['forum_id'] : $row['forum_link']) ); } |