diff options
author | Meik Sievertsen <acydburn@phpbb.com> | 2009-02-28 19:22:27 +0000 |
---|---|---|
committer | Meik Sievertsen <acydburn@phpbb.com> | 2009-02-28 19:22:27 +0000 |
commit | 62973fa50416cebd78b46aba7e29f9746e949032 (patch) | |
tree | 621fde9ce34e356606113248da6032b700a37a75 /phpBB/includes/functions_user.php | |
parent | bfa4e6038e1e15bab8c19a6a0caa9607933b972b (diff) | |
download | forums-62973fa50416cebd78b46aba7e29f9746e949032.tar forums-62973fa50416cebd78b46aba7e29f9746e949032.tar.gz forums-62973fa50416cebd78b46aba7e29f9746e949032.tar.bz2 forums-62973fa50416cebd78b46aba7e29f9746e949032.tar.xz forums-62973fa50416cebd78b46aba7e29f9746e949032.zip |
- adjust db_tools again to not remove any schema (they may be required)
- fill dbms version if not yet filled
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9351 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/functions_user.php')
-rw-r--r-- | phpBB/includes/functions_user.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions_user.php b/phpBB/includes/functions_user.php index 82d20e90a7..3cdf18449d 100644 --- a/phpBB/includes/functions_user.php +++ b/phpBB/includes/functions_user.php @@ -502,7 +502,7 @@ function user_delete($mode, $user_id, $post_username = false) $cache->destroy('sql', MODERATOR_CACHE_TABLE); // Delete the user_id from the banlist - $sql = 'DELETE FROM ' . BANLIST_TABLE . ' + $sql = 'DELETE FROM ' . BANLIST_TABLE . ' WHERE ban_userid = ' . $user_id; $db->sql_query($sql); |