Added a missing error message in tools module.
| | |
| | | $wb["language_txt"] = 'Language'; |
| | | $wb["btn_save_txt"] = 'Save'; |
| | | $wb["btn_cancel_txt"] = 'Cancel'; |
| | | $wb["password_mismatch"] = 'The password in the second password field does not match the first password.'; |
| | | ?> |
| | |
| | | global $app, $conf; |
| | | |
| | | if($_POST['passwort'] != $_POST['passwort2']) { |
| | | $app->tform->errorMessage = 'The passwords in the second password field does not match the first password.'; |
| | | $app->tform->errorMessage = $app->tform->lng('password_mismatch'); |
| | | } |
| | | |
| | | } |