diff options
author | Paul S. Owen <psotfx@users.sourceforge.net> | 2002-03-01 01:18:01 +0000 |
---|---|---|
committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2002-03-01 01:18:01 +0000 |
commit | a8b7699f7f9db60755f3de51f29efc1240ac5886 (patch) | |
tree | 0387cdd02834154c312d80541a27c3e740cd3468 | |
parent | 33a6fbcda02a5ff749a63df8f1db3d873a64e317 (diff) | |
download | forums-a8b7699f7f9db60755f3de51f29efc1240ac5886.tar forums-a8b7699f7f9db60755f3de51f29efc1240ac5886.tar.gz forums-a8b7699f7f9db60755f3de51f29efc1240ac5886.tar.bz2 forums-a8b7699f7f9db60755f3de51f29efc1240ac5886.tar.xz forums-a8b7699f7f9db60755f3de51f29efc1240ac5886.zip |
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
-rw-r--r-- | phpBB/admin/admin_ug_auth.php | 2 |
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); |