diff options
author | Marc Alexander <admin@m-a-styles.de> | 2017-05-05 21:25:29 -0400 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2017-05-05 21:25:29 -0400 |
commit | 70349864273eae4ee689cb1302bc416f5c535d25 (patch) | |
tree | cebed5630525a507c6d8abaa0b3ceba372be851b | |
parent | 18fe3b28330a234ef8a2c1a244b61ec2af1bb294 (diff) | |
download | forums-70349864273eae4ee689cb1302bc416f5c535d25.tar forums-70349864273eae4ee689cb1302bc416f5c535d25.tar.gz forums-70349864273eae4ee689cb1302bc416f5c535d25.tar.bz2 forums-70349864273eae4ee689cb1302bc416f5c535d25.tar.xz forums-70349864273eae4ee689cb1302bc416f5c535d25.zip |
[ticket/15219] Add missing space
PHPBB3-15219
-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); } |