Rename checkPasswordExposed to isPasswordExposed

This commit is contained in:
Hypolite Petovan 2018-03-21 02:14:43 -04:00
parent ca13570251
commit 701fd41463
2 changed files with 2 additions and 2 deletions

View File

@ -390,7 +390,7 @@ function settings_post(App $a)
$err = true;
}
if (User::checkPasswordExposed($newpass)) {
if (User::isPasswordExposed($newpass)) {
notice(L10n::t('The new password has been exposed in a public data dump, please choose another.') . EOL);
$err = true;
}

View File

@ -224,7 +224,7 @@ class User
* @param string $password
* @return bool
*/
public static function checkPasswordExposed($password)
public static function isPasswordExposed($password)
{
return password_exposed($password) === PasswordStatus::EXPOSED;
}