|
From: Paul S. O. <ps...@us...> - 2001-12-11 02:21:54
|
Update of /cvsroot/phpbb/phpBB2/includes
In directory usw-pr-cvs1:/tmp/cvs-serv27942/includes
Modified Files:
functions.php
Log Message:
More updates for Euclid, minor update to subSilver, fixed bug #490798
Index: functions.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/includes/functions.php,v
retrieving revision 1.90
retrieving revision 1.91
diff -C2 -r1.90 -r1.91
*** functions.php 2001/12/10 16:52:16 1.90
--- functions.php 2001/12/11 02:21:51 1.91
***************
*** 201,205 ****
// Simple version of jumpbox, just lists authed forums
//
! function make_forum_select($box_name)
{
global $db, $userdata;
--- 201,205 ----
// Simple version of jumpbox, just lists authed forums
//
! function make_forum_select($box_name, $ignore_forum = false)
{
global $db, $userdata;
***************
*** 218,222 ****
while( $row = $db->sql_fetchrow($q_forums) )
{
! if( $is_auth_ary[$row['forum_id']]['auth_read'] )
{
$forum_list .= "<option value=\"" . $row['forum_id'] . "\">" . $row['forum_name'] . "</option>";
--- 218,222 ----
while( $row = $db->sql_fetchrow($q_forums) )
{
! 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>";
|