diff options
| author | Nils Adermann <naderman@naderman.de> | 2010-03-02 01:05:38 +0100 |
|---|---|---|
| committer | Nils Adermann <naderman@naderman.de> | 2010-03-02 01:05:38 +0100 |
| commit | 92271af9cda6d95cab9a3f3a08e93d12c70ce7ba (patch) | |
| tree | 2a72fa1e0ec2f8ea825ebd799679a8d4ee40e11a /phpBB/viewforum.php | |
| parent | ee781806ebff950e9c645e80686f2d1d9b9545be (diff) | |
| parent | 7e97da5285859419b1769e76f8395f71076ac06e (diff) | |
| download | forums-92271af9cda6d95cab9a3f3a08e93d12c70ce7ba.tar forums-92271af9cda6d95cab9a3f3a08e93d12c70ce7ba.tar.gz forums-92271af9cda6d95cab9a3f3a08e93d12c70ce7ba.tar.bz2 forums-92271af9cda6d95cab9a3f3a08e93d12c70ce7ba.tar.xz forums-92271af9cda6d95cab9a3f3a08e93d12c70ce7ba.zip | |
Merge commit 'release-3.0.2-RC2'
Diffstat (limited to 'phpBB/viewforum.php')
| -rw-r--r-- | phpBB/viewforum.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/phpBB/viewforum.php b/phpBB/viewforum.php index e8e6fab47a..12a6d940d1 100644 --- a/phpBB/viewforum.php +++ b/phpBB/viewforum.php @@ -107,7 +107,9 @@ if ($forum_data['forum_type'] == FORUM_LINK && $forum_data['forum_link']) $db->sql_query($sql); } - redirect($forum_data['forum_link']); + // We redirect to the url. The third parameter indicates that external redirects are allowed. + redirect($forum_data['forum_link'], false, true); + exit; } // Build navigation links |
