diff options
author | Paul S. Owen <psotfx@users.sourceforge.net> | 2001-12-11 02:21:52 +0000 |
---|---|---|
committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2001-12-11 02:21:52 +0000 |
commit | 1e11060934f95a1e347179f95497544ddbc29592 (patch) | |
tree | 1efceb3a724470e202cfb0a52c23403524294768 /phpBB/includes | |
parent | 8f6866beaa823f6724fdb4916238449ac35361a5 (diff) | |
download | forums-1e11060934f95a1e347179f95497544ddbc29592.tar forums-1e11060934f95a1e347179f95497544ddbc29592.tar.gz forums-1e11060934f95a1e347179f95497544ddbc29592.tar.bz2 forums-1e11060934f95a1e347179f95497544ddbc29592.tar.xz forums-1e11060934f95a1e347179f95497544ddbc29592.zip |
More updates for Euclid, minor update to subSilver, fixed bug #490798
git-svn-id: file:///svn/phpbb/trunk@1550 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes')
-rw-r--r-- | phpBB/includes/functions.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php index 8d5915368c..01ef706e13 100644 --- a/phpBB/includes/functions.php +++ b/phpBB/includes/functions.php @@ -200,7 +200,7 @@ function make_jumpbox($match_forum_id = 0) // // Simple version of jumpbox, just lists authed forums // -function make_forum_select($box_name) +function make_forum_select($box_name, $ignore_forum = false) { global $db, $userdata; @@ -217,7 +217,7 @@ function make_forum_select($box_name) $forum_list = ""; while( $row = $db->sql_fetchrow($q_forums) ) { - if( $is_auth_ary[$row['forum_id']]['auth_read'] ) + if( $is_auth_ary[$row['forum_id']]['auth_read'] && $ignore_forum != $row['forum_id'] ) { $forum_list .= "<option value=\"" . $row['forum_id'] . "\">" . $row['forum_name'] . "</option>"; } |