diff options
Diffstat (limited to 'phpBB/phpbb/passwords/driver/bcrypt.php')
| -rw-r--r-- | phpBB/phpbb/passwords/driver/bcrypt.php | 10 | 
1 files changed, 5 insertions, 5 deletions
| diff --git a/phpBB/phpbb/passwords/driver/bcrypt.php b/phpBB/phpbb/passwords/driver/bcrypt.php index 3edf7255c0..23add37a56 100644 --- a/phpBB/phpbb/passwords/driver/bcrypt.php +++ b/phpBB/phpbb/passwords/driver/bcrypt.php @@ -18,7 +18,7 @@ class bcrypt extends base  	const PREFIX = '$2a$';  	/** -	* @inheritdoc +	* {@inheritdoc}  	*/  	public function get_prefix()  	{ @@ -26,7 +26,7 @@ class bcrypt extends base  	}  	/** -	* @inheritdoc +	* {@inheritdoc}  	*/  	public function hash($password, $salt = '')  	{ @@ -58,9 +58,9 @@ class bcrypt extends base  	}  	/** -	* @inheritdoc +	* {@inheritdoc}  	*/ -	public function check($password, $hash) +	public function check($password, $hash, $user_row = array())  	{  		$salt = substr($hash, 0, 29);  		if (strlen($salt) != 29) @@ -86,7 +86,7 @@ class bcrypt extends base  	}  	/** -	* @inheritdoc +	* {@inheritdoc}  	*/  	public function get_settings_only($hash, $full = false)  	{ | 
