diff options
Diffstat (limited to 'phpBB/includes/crypto/driver/bcrypt.php')
-rw-r--r-- | phpBB/includes/crypto/driver/bcrypt.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/crypto/driver/bcrypt.php b/phpBB/includes/crypto/driver/bcrypt.php index 8fe9b91ab8..12400cf376 100644 --- a/phpBB/includes/crypto/driver/bcrypt.php +++ b/phpBB/includes/crypto/driver/bcrypt.php @@ -45,7 +45,7 @@ class phpbb_crypto_driver_bcrypt extends phpbb_crypto_driver_base { // The 2x and 2y prefixes of bcrypt might not be supported // Revert to 2a if this is the case - $prefix = (!$this->is_supported()) ? '$2a$' : self::PREFIX; + $prefix = (!$this->is_supported()) ? '$2a$' : $this->get_prefix(); if ($salt == '') { |