aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2017-05-05 21:26:07 -0400
committerMarc Alexander <admin@m-a-styles.de>2017-05-05 21:26:07 -0400
commit8fd78e607dfa00b02a2b78b0272af0b2ba0b03a6 (patch)
tree8daf4ebffc0256f7a65b85e639ac0737097bf0e2 /phpBB/phpbb
parent710a943b005dd82fe2ca667a28e18587688c8337 (diff)
parent70349864273eae4ee689cb1302bc416f5c535d25 (diff)
downloadforums-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.php2
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);
}