diff options
-rw-r--r-- | phpBB/phpbb/cron/task/core/update_hashes.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/cron/task/core/update_hashes.php b/phpBB/phpbb/cron/task/core/update_hashes.php index 458853f2fd..a4fe477d99 100644 --- a/phpBB/phpbb/cron/task/core/update_hashes.php +++ b/phpBB/phpbb/cron/task/core/update_hashes.php @@ -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); } |