From a8b7699f7f9db60755f3de51f29efc1240ac5886 Mon Sep 17 00:00:00 2001 From: "Paul S. Owen" Date: Fri, 1 Mar 2002 01:18:01 +0000 Subject: [PATCH] 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 --- phpBB/admin/admin_ug_auth.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpBB/admin/admin_ug_auth.php b/phpBB/admin/admin_ug_auth.php index 91f513850c..4dfd157090 100644 --- a/phpBB/admin/admin_ug_auth.php +++ b/phpBB/admin/admin_ug_auth.php @@ -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);