From 83977fd847b485a4385e69b69fc2029d86d6357e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=B4me=20Chilliet?= <come@opensides.be> Date: Wed, 5 Apr 2017 10:58:26 +0200 Subject: [PATCH] Fixed a typo --- plugins/personal/generic/class_user.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/personal/generic/class_user.inc b/plugins/personal/generic/class_user.inc index 5cc38854f..fed8e9b67 100644 --- a/plugins/personal/generic/class_user.inc +++ b/plugins/personal/generic/class_user.inc @@ -708,7 +708,7 @@ class user extends simplePlugin } elseif ($check_differ && (substr($current_password, 0, $differ) == substr($new_password, 0, $differ))) { return _('The password used as new and current are too similar.'); } elseif ($check_length && (strlen($new_password) < $length)) { - return _('The password used as new is to short.'); + return _('The password used as new is too short.'); } elseif (!passwordMethod::is_harmless($new_password)) { return _('The password contains possibly problematic Unicode characters!'); } -- GitLab