aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/crypto
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2013-06-15 12:09:00 +0200
committerMarc Alexander <admin@m-a-styles.de>2013-09-14 13:51:39 +0200
commitc9afda5a655f5eec8819c4c090a0b31a73e35b87 (patch)
tree5594038e798973aed795acdee7e6610f734d8915 /phpBB/includes/crypto
parent7a526284d3e60c8d97e611a8c54556c60ce0de03 (diff)
downloadforums-c9afda5a655f5eec8819c4c090a0b31a73e35b87.tar
forums-c9afda5a655f5eec8819c4c090a0b31a73e35b87.tar.gz
forums-c9afda5a655f5eec8819c4c090a0b31a73e35b87.tar.bz2
forums-c9afda5a655f5eec8819c4c090a0b31a73e35b87.tar.xz
forums-c9afda5a655f5eec8819c4c090a0b31a73e35b87.zip
[feature/passwords] Use correct prefix for bcrypt type
PHPBB3-11610
Diffstat (limited to 'phpBB/includes/crypto')
-rw-r--r--phpBB/includes/crypto/driver/bcrypt.php2
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 == '')
{