diff options
Diffstat (limited to 'phpBB/phpbb/passwords/driver/md5_mybb.php')
-rw-r--r-- | phpBB/phpbb/passwords/driver/md5_mybb.php | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/phpBB/phpbb/passwords/driver/md5_mybb.php b/phpBB/phpbb/passwords/driver/md5_mybb.php index 59a08039f2..d17f3ea035 100644 --- a/phpBB/phpbb/passwords/driver/md5_mybb.php +++ b/phpBB/phpbb/passwords/driver/md5_mybb.php @@ -56,12 +56,4 @@ class md5_mybb extends base return $hash === md5(md5($user_row['user_passwd_salt']) . md5($password)); } } - - /** - * @inheritdoc - */ - public function get_settings_only($hash, $full = false) - { - return false; - } } |