diff options
author | Meik Sievertsen <acydburn@phpbb.com> | 2005-05-30 06:42:49 +0000 |
---|---|---|
committer | Meik Sievertsen <acydburn@phpbb.com> | 2005-05-30 06:42:49 +0000 |
commit | 6482d0e207afa2aa0cfa74824a5348c9bda1fd95 (patch) | |
tree | ad15ba3efe7aaca978dbe3306ff0dee19b27cd04 /phpBB/adm | |
parent | 271e9caa8c742c80c2301a91b45f8a35b0d3d024 (diff) | |
download | forums-6482d0e207afa2aa0cfa74824a5348c9bda1fd95.tar forums-6482d0e207afa2aa0cfa74824a5348c9bda1fd95.tar.gz forums-6482d0e207afa2aa0cfa74824a5348c9bda1fd95.tar.bz2 forums-6482d0e207afa2aa0cfa74824a5348c9bda1fd95.tar.xz forums-6482d0e207afa2aa0cfa74824a5348c9bda1fd95.zip |
- fix two small errors i "introduced" a while back. ;)
git-svn-id: file:///svn/phpbb/trunk@5155 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/adm')
-rw-r--r-- | phpBB/adm/index.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/adm/index.php b/phpBB/adm/index.php index a1f683b4bb..ff488b4e65 100644 --- a/phpBB/adm/index.php +++ b/phpBB/adm/index.php @@ -156,7 +156,7 @@ elseif ($pane == 'right') if ($action == 'activate') { - $sql = 'UPDATE ' . USERS_TABLE . ' SET user_type = ' . USER_NORMAL . " WHERE user_id IN ($mark)" + $sql = 'UPDATE ' . USERS_TABLE . ' SET user_type = ' . USER_NORMAL . " WHERE user_id IN ($mark)"; $db->sql_query($sql); } else if ($action == 'delete') |