I left that echo in intentionally, honest ... phew, think I got away with that ... oh, did I just write that, doh

git-svn-id: file:///svn/phpbb/trunk@2230 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Paul S. Owen 2002-03-01 01:18:01 +00:00
parent 33a6fbcda0
commit a8b7699f7f

View file

@ -467,7 +467,7 @@ if ( isset($HTTP_POST_VARS['submit']) && ( ( $mode == "user" && $user_id ) || (
$unset_mod = "";
while( $row = $db->sql_fetchrow($result) )
{
echo $unset_mod .= ( ( $unset_mod != "" ) ? ", " : "" ) . $row['user_id'];
$unset_mod .= ( ( $unset_mod != "" ) ? ", " : "" ) . $row['user_id'];
}
$db->sql_freeresult($result);