Merge branch 'ticket/15219' into ticket/15219-rhea

This commit is contained in:
Marc Alexander 2017-05-05 21:26:07 -04:00
commit 8fd78e607d
No known key found for this signature in database
GPG key ID: 50E0D2423696F995

View file

@ -113,7 +113,7 @@ class update_hashes extends \phpbb\cron\task\base
$sql = 'UPDATE ' . USERS_TABLE . '
SET user_password = "' . $this->db->sql_escape($new_hash) . '"
WHERE user_id = ' . (int)$row['user_id'];
WHERE user_id = ' . (int) $row['user_id'];
$this->db->sql_query($sql);
}