1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-06-24 12:08:02 +02:00

[feature/prune-users] Cosmetic changes per bantu's review.

PHPBB3-9622
This commit is contained in:
Oleg Pudeyev
2012-03-25 20:56:00 -04:00
parent a1fee699dd
commit 15d2f294c6
2 changed files with 7 additions and 7 deletions

@ -365,8 +365,7 @@ function user_delete($mode, $user_ids, $retain_username = true)
// Before we begin, we will remove the reports the user issued.
$sql = 'SELECT r.post_id, p.topic_id
FROM ' . REPORTS_TABLE . ' r, ' . POSTS_TABLE . ' p
WHERE ' . $db->sql_in_set('r.user_id', $user_ids) . //r.user_id = ' . $user_id . '
'
WHERE ' . $db->sql_in_set('r.user_id', $user_ids) . '
AND p.post_id = r.post_id';
$result = $db->sql_query($sql);
@ -554,13 +553,13 @@ function user_delete($mode, $user_ids, $retain_username = true)
// Change user_id to anonymous for this users triggered events
$sql = 'UPDATE ' . LOG_TABLE . '
SET user_id = ' . ANONYMOUS . '
WHERE ' . $user_id_sql; //user_id = ' . $user_id;
WHERE ' . $user_id_sql;
$db->sql_query($sql);
// Delete the user_id from the zebra table
$sql = 'DELETE FROM ' . ZEBRA_TABLE . '
WHERE ' . $user_id_sql . //user_id = ' . $user_id . '
' OR ' . $db->sql_in_set('zebra_id', $user_ids);
WHERE ' . $user_id_sql . '
OR ' . $db->sql_in_set('zebra_id', $user_ids);
$db->sql_query($sql);
// Delete the user_id from the banlist