diff options
author | Paul S. Owen <psotfx@users.sourceforge.net> | 2002-01-25 12:42:49 +0000 |
---|---|---|
committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2002-01-25 12:42:49 +0000 |
commit | f6eaedcd8d18ef59dc5a9e29b9e2f52cbf06e744 (patch) | |
tree | 8bafeb3185cb9d309901772b50dcd0d0db6f6701 | |
parent | 569666ecb261f92b0929d475221d4d8871264f9e (diff) | |
download | forums-f6eaedcd8d18ef59dc5a9e29b9e2f52cbf06e744.tar forums-f6eaedcd8d18ef59dc5a9e29b9e2f52cbf06e744.tar.gz forums-f6eaedcd8d18ef59dc5a9e29b9e2f52cbf06e744.tar.bz2 forums-f6eaedcd8d18ef59dc5a9e29b9e2f52cbf06e744.tar.xz forums-f6eaedcd8d18ef59dc5a9e29b9e2f52cbf06e744.zip |
Fixed viewforum/admin_forum bug for guests
git-svn-id: file:///svn/phpbb/trunk@1951 89ea8834-ac86-4346-8a33-228a782c2dd0
-rw-r--r-- | phpBB/admin/index.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/admin/index.php b/phpBB/admin/index.php index bb09f72f76..deb18b2781 100644 --- a/phpBB/admin/index.php +++ b/phpBB/admin/index.php @@ -508,7 +508,7 @@ elseif( $HTTP_GET_VARS['pane'] == 'right' ) } else { - $location_url = append_sid("viewforum.$phpEx?" . POST_FORUM_URL . "=" . $onlinerow_guest[$i]['session_page']); + $location_url = append_sid("admin_forums.$phpEx?mode=editforum&" . POST_FORUM_URL . "=" . $onlinerow_guest[$i]['session_page']); $location = $forum_data[$onlinerow_guest[$i]['session_page']]; } |