diff options
author | Marc Alexander <admin@m-a-styles.de> | 2013-09-27 11:16:47 +0200 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2013-09-27 11:16:47 +0200 |
commit | 3f63b9b470b2848abdd6288a45ca56331a3bb77c (patch) | |
tree | 9eaee894e0813426c80e64c03eddde7ca18fbab4 /phpBB/phpbb/passwords/driver/bcrypt_2y.php | |
parent | e41c9ef6cdab65921f1bc283504e7c5fb552d659 (diff) | |
download | forums-3f63b9b470b2848abdd6288a45ca56331a3bb77c.tar forums-3f63b9b470b2848abdd6288a45ca56331a3bb77c.tar.gz forums-3f63b9b470b2848abdd6288a45ca56331a3bb77c.tar.bz2 forums-3f63b9b470b2848abdd6288a45ca56331a3bb77c.tar.xz forums-3f63b9b470b2848abdd6288a45ca56331a3bb77c.zip |
[feature/passwords] Modify passwords files for namespacing changes
PHPBB3-11610
Diffstat (limited to 'phpBB/phpbb/passwords/driver/bcrypt_2y.php')
-rw-r--r-- | phpBB/phpbb/passwords/driver/bcrypt_2y.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/phpBB/phpbb/passwords/driver/bcrypt_2y.php b/phpBB/phpbb/passwords/driver/bcrypt_2y.php index 5b0dbdd311..8da8c8dbc8 100644 --- a/phpBB/phpbb/passwords/driver/bcrypt_2y.php +++ b/phpBB/phpbb/passwords/driver/bcrypt_2y.php @@ -7,6 +7,8 @@ * */ +namespace phpbb\passwords\driver; + /** * @ignore */ @@ -18,7 +20,7 @@ if (!defined('IN_PHPBB')) /** * @package passwords */ -class phpbb_passwords_driver_bcrypt_2y extends phpbb_passwords_driver_bcrypt +class bcrypt_2y extends \phpbb\passwords\driver\bcrypt { const PREFIX = '$2y$'; |