Skip to content
Snippets Groups Projects
Commit 0634d4eb authored by tbrehm's avatar tbrehm
Browse files

Added a missing error message in tools module.

parent a067bda5
No related branches found
No related tags found
No related merge requests found
......@@ -3,4 +3,5 @@ $wb["passwort_txt"] = 'Password';
$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.';
?>
\ No newline at end of file
......@@ -77,7 +77,7 @@ class page_action extends tform_actions {
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');
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment