resolve old lng-references

Signed-off-by: Michael Kaufmann <d00p@froxlor.org>
This commit is contained in:
Michael Kaufmann
2022-05-02 08:56:39 +02:00
parent 7b6d5f1642
commit 00a3424f65
16 changed files with 41 additions and 24 deletions

View File

@@ -213,17 +213,17 @@ if ($page == 'overview') {
if ($old_password == '') {
Response::standardError([
'stringisempty',
'oldpassword'
'changepassword.old_password'
]);
} elseif ($new_password == '') {
Response::standardError([
'stringisempty',
'newpassword'
'changepassword.new_password'
]);
} elseif ($new_password_confirm == '') {
Response::standardError([
'stringisempty',
'newpasswordconfirm'
'changepassword.new_password_confirm'
]);
} elseif ($new_password != $new_password_confirm) {
Response::standardError('newpasswordconfirmerror');