summaryrefslogtreecommitdiff
path: root/actions/password.php
diff options
context:
space:
mode:
Diffstat (limited to 'actions/password.php')
-rw-r--r--actions/password.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/actions/password.php b/actions/password.php
index 5acfd1620..aef1accdc 100644
--- a/actions/password.php
+++ b/actions/password.php
@@ -58,7 +58,7 @@ class PasswordAction extends SettingsAction {
$confirm = $this->arg('confirm');
if (0 != strcmp($newpassword, $confirm)) {
- $this->show_form(_('Passwords don\'t match'));
+ $this->show_form(_('Passwords don\'t match.'));
return;
}
@@ -86,6 +86,6 @@ class PasswordAction extends SettingsAction {
return;
}
- $this->show_form(_('Password saved'), true);
+ $this->show_form(_('Password saved.'), true);
}
}