aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul S. Owen <psotfx@users.sourceforge.net>2003-03-18 00:17:12 +0000
committerPaul S. Owen <psotfx@users.sourceforge.net>2003-03-18 00:17:12 +0000
commitd85156d5cd684d16e7e37e300f229a3131603c68 (patch)
tree46991390d825428a03f7a9157e571bc8314b912b
parentdf495c30c99e65d0fa8b2977c26f3b289ce717fd (diff)
downloadforums-d85156d5cd684d16e7e37e300f229a3131603c68.tar
forums-d85156d5cd684d16e7e37e300f229a3131603c68.tar.gz
forums-d85156d5cd684d16e7e37e300f229a3131603c68.tar.bz2
forums-d85156d5cd684d16e7e37e300f229a3131603c68.tar.xz
forums-d85156d5cd684d16e7e37e300f229a3131603c68.zip
Paul did a whoopsie
git-svn-id: file:///svn/phpbb/trunk@3661 89ea8834-ac86-4346-8a33-228a782c2dd0
-rw-r--r--phpBB/viewforum.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/viewforum.php b/phpBB/viewforum.php
index 4b117c924b..088e33319e 100644
--- a/phpBB/viewforum.php
+++ b/phpBB/viewforum.php
@@ -26,7 +26,7 @@ include($phpbb_root_path . 'common.'.$phpEx);
// Start initial var setup
-$forum_id = (isset($_GET['f'])) ? max(intval($_GET['f']), 0) : 0;
+$forum_id = (isset($_REQUEST['f'])) ? max(intval($_REQUEST['f']), 0) : 0;
$start = (isset($_GET['start'])) ? max(intval($_GET['start']), 0) : 0;
$mark_read = (!empty($_GET['mark'])) ? $_GET['mark'] : '';