Commit 83977fd8 authored by Côme Chilliet's avatar Côme Chilliet
Browse files

Fixed a typo

Showing with 1 addition and 1 deletion
+1 -1
...@@ -708,7 +708,7 @@ class user extends simplePlugin ...@@ -708,7 +708,7 @@ class user extends simplePlugin
} elseif ($check_differ && (substr($current_password, 0, $differ) == substr($new_password, 0, $differ))) { } elseif ($check_differ && (substr($current_password, 0, $differ) == substr($new_password, 0, $differ))) {
return _('The password used as new and current are too similar.'); return _('The password used as new and current are too similar.');
} elseif ($check_length && (strlen($new_password) < $length)) { } 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)) { } elseif (!passwordMethod::is_harmless($new_password)) {
return _('The password contains possibly problematic Unicode characters!'); return _('The password contains possibly problematic Unicode characters!');
} }
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment