diff options
author | Marc Alexander <admin@m-a-styles.de> | 2017-05-05 21:26:07 -0400 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2017-05-05 21:26:07 -0400 |
commit | 8fd78e607dfa00b02a2b78b0272af0b2ba0b03a6 (patch) | |
tree | 8daf4ebffc0256f7a65b85e639ac0737097bf0e2 /phpBB/phpbb | |
parent | 710a943b005dd82fe2ca667a28e18587688c8337 (diff) | |
parent | 70349864273eae4ee689cb1302bc416f5c535d25 (diff) | |
download | forums-8fd78e607dfa00b02a2b78b0272af0b2ba0b03a6.tar forums-8fd78e607dfa00b02a2b78b0272af0b2ba0b03a6.tar.gz forums-8fd78e607dfa00b02a2b78b0272af0b2ba0b03a6.tar.bz2 forums-8fd78e607dfa00b02a2b78b0272af0b2ba0b03a6.tar.xz forums-8fd78e607dfa00b02a2b78b0272af0b2ba0b03a6.zip |
Merge branch 'ticket/15219' into ticket/15219-rhea
Diffstat (limited to 'phpBB/phpbb')
-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); } |