1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 05:50:42 +02:00

More updates for Euclid, minor update to subSilver, fixed bug #490798

git-svn-id: file:///svn/phpbb/trunk@1550 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Paul S. Owen
2001-12-11 02:21:52 +00:00
parent 8f6866beaa
commit 1e11060934
5 changed files with 162 additions and 100 deletions

View File

@@ -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>";
}