Fix egregious whitespace issue in mod/settings
This commit is contained in:
parent
5b4fb945a2
commit
fd9171a40e
1 changed files with 6 additions and 6 deletions
|
@ -388,18 +388,18 @@ function settings_post(App $a)
|
||||||
if (!x($newpass) || !x($confirm)) {
|
if (!x($newpass) || !x($confirm)) {
|
||||||
notice(L10n::t('Empty passwords are not allowed. Password unchanged.') . EOL);
|
notice(L10n::t('Empty passwords are not allowed. Password unchanged.') . EOL);
|
||||||
$err = true;
|
$err = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!$a->getConfigValue('system', 'disable_password_exposed', false) && User::isPasswordExposed($newpass)) {
|
if (!$a->getConfigValue('system', 'disable_password_exposed', false) && User::isPasswordExposed($newpass)) {
|
||||||
notice(L10n::t('The new password has been exposed in a public data dump, please choose another.') . EOL);
|
notice(L10n::t('The new password has been exposed in a public data dump, please choose another.') . EOL);
|
||||||
$err = true;
|
$err = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
// check if the old password was supplied correctly before changing it to the new value
|
// check if the old password was supplied correctly before changing it to the new value
|
||||||
if (!User::authenticate(intval(local_user()), $_POST['opassword'])) {
|
if (!User::authenticate(intval(local_user()), $_POST['opassword'])) {
|
||||||
notice(L10n::t('Wrong password.') . EOL);
|
notice(L10n::t('Wrong password.') . EOL);
|
||||||
$err = true;
|
$err = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!$err) {
|
if (!$err) {
|
||||||
$result = User::updatePassword(local_user(), $newpass);
|
$result = User::updatePassword(local_user(), $newpass);
|
||||||
|
|
Loading…
Reference in a new issue