1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-13 04:04:12 +02:00

[ticket/12352] Add get_settings_only method to passwords driver base

PHPBB3-12352
This commit is contained in:
Marc Alexander
2014-05-30 00:22:55 +02:00
parent f3eba6275a
commit 4b3aacfd18
11 changed files with 9 additions and 89 deletions

View File

@@ -56,12 +56,4 @@ class sha1_wcf1 extends base
return $hash === sha1($user_row['user_passwd_salt'] . sha1($user_row['user_passwd_salt'] . sha1($password)));
}
}
/**
* @inheritdoc
*/
public function get_settings_only($hash, $full = false)
{
return false;
}
}