|
From: Paul S. O. <ps...@us...> - 2002-02-13 15:40:56
|
Update of /cvsroot/phpbb/phpBB2/includes
In directory usw-pr-cvs1:/tmp/cvs-serv23748/includes
Modified Files:
functions.php
Log Message:
Fixed error in make_forum_select box generation output
Index: functions.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/includes/functions.php,v
retrieving revision 1.116
retrieving revision 1.117
diff -C2 -r1.116 -r1.117
*** functions.php 12 Feb 2002 17:14:39 -0000 1.116
--- functions.php 13 Feb 2002 15:40:51 -0000 1.117
***************
*** 195,199 ****
}
! $forum_list = "";
while( $row = $db->sql_fetchrow($result) )
{
--- 195,199 ----
}
! $forum_list = '';
while( $row = $db->sql_fetchrow($result) )
{
***************
*** 204,208 ****
}
! $forum_list .= ( $forum_list == "" ) ? '<option value="-1">-- ! No Forums ! --</option>' : '<select name="' . $box_name . '">' . $forum_list . '</select>';
return $forum_list;
--- 204,208 ----
}
! $forum_list = ( $forum_list == "" ) ? '<option value="-1">-- ! No Forums ! --</option>' : '<select name="' . $box_name . '">' . $forum_list . '</select>';
return $forum_list;
|