1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 22:10:45 +02:00

[ticket/16167] Remove uses of user_email_hash

PHPBB3-16167
This commit is contained in:
Marc Alexander
2019-11-18 21:06:00 +01:00
parent aed7e369c3
commit 9872316cac
14 changed files with 5 additions and 232 deletions

View File

@@ -966,10 +966,7 @@ class acp_users
if ($update_email !== false)
{
$sql_ary += array(
'user_email' => $update_email,
'user_email_hash' => phpbb_email_hash($update_email),
);
$sql_ary += ['user_email' => $update_email];
$phpbb_log->add('user', $user->data['user_id'], $user->ip, 'LOG_USER_UPDATE_EMAIL', false, array(
'reportee_id' => $user_id,