|
From: Paul S. O. <ps...@us...> - 2002-03-01 01:18:05
|
Update of /cvsroot/phpbb/phpBB2/admin
In directory usw-pr-cvs1:/tmp/cvs-serv9673/admin
Modified Files:
admin_ug_auth.php
Log Message:
I left that echo in intentionally, honest ... phew, think I got away with that ... oh, did I just write that, doh
Index: admin_ug_auth.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/admin/admin_ug_auth.php,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** admin_ug_auth.php 1 Mar 2002 01:15:39 -0000 1.2
--- admin_ug_auth.php 1 Mar 2002 01:18:01 -0000 1.3
***************
*** 468,472 ****
while( $row = $db->sql_fetchrow($result) )
{
! echo $unset_mod .= ( ( $unset_mod != "" ) ? ", " : "" ) . $row['user_id'];
}
$db->sql_freeresult($result);
--- 468,472 ----
while( $row = $db->sql_fetchrow($result) )
{
! $unset_mod .= ( ( $unset_mod != "" ) ? ", " : "" ) . $row['user_id'];
}
$db->sql_freeresult($result);
|