1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-04-06 00:43:02 +02:00

[ticket/15347] Fix query quotes in update hashes cli command

PHPBB3-15347
This commit is contained in:
Marc Alexander 2017-09-08 10:54:58 +02:00
parent 38cbdb6768
commit 7e4498dfb5
No known key found for this signature in database
GPG Key ID: 50E0D2423696F995

View File

@ -101,9 +101,9 @@ class update_hashes extends \phpbb\console\command\command
{
$new_hash = $this->passwords_manager->hash($row['user_password'], array($this->default_type));
$sql = 'UPDATE ' . USERS_TABLE . '
SET user_password = "' . $this->db->sql_escape($new_hash) . '"
WHERE user_id = ' . (int) $row['user_id'];
$sql = 'UPDATE ' . USERS_TABLE . "
SET user_password = '" . $this->db->sql_escape($new_hash) . "'
WHERE user_id = " . (int) $row['user_id'];
$this->db->sql_query($sql);
$progress_bar->advance();
}