diff options
author | Meik Sievertsen <acydburn@phpbb.com> | 2008-09-30 09:49:20 +0000 |
---|---|---|
committer | Meik Sievertsen <acydburn@phpbb.com> | 2008-09-30 09:49:20 +0000 |
commit | 77cf8e50d9e1b37cdd5ba5bb409ce6ac09fba394 (patch) | |
tree | bc1007e194cf34eca13683d7e21818b04ec213d0 /phpBB/viewforum.php | |
parent | eef41d039edecdb80b52a4122dacd874d0e1b807 (diff) | |
download | forums-77cf8e50d9e1b37cdd5ba5bb409ce6ac09fba394.tar forums-77cf8e50d9e1b37cdd5ba5bb409ce6ac09fba394.tar.gz forums-77cf8e50d9e1b37cdd5ba5bb409ce6ac09fba394.tar.bz2 forums-77cf8e50d9e1b37cdd5ba5bb409ce6ac09fba394.tar.xz forums-77cf8e50d9e1b37cdd5ba5bb409ce6ac09fba394.zip |
further adjustments to exit; statements
force E_USER_ERROR to exit *always* - it is always a fatal error which should stop every execution happening
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@8957 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/viewforum.php')
-rw-r--r-- | phpBB/viewforum.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/viewforum.php b/phpBB/viewforum.php index b95a009baa..7e53a13ff7 100644 --- a/phpBB/viewforum.php +++ b/phpBB/viewforum.php @@ -113,7 +113,7 @@ if ($forum_data['forum_type'] == FORUM_LINK && $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; + return; } // Build navigation links |