aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/admin/admin_ug_auth.php
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/admin/admin_ug_auth.php')
-rw-r--r--phpBB/admin/admin_ug_auth.php2
1 files changed, 1 insertions, 1 deletions
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);