diff options
| author | fisharebest <fisharebest@gmail.com> | 2011-11-03 19:46:36 +0000 |
|---|---|---|
| committer | fisharebest <fisharebest@gmail.com> | 2011-11-03 19:46:36 +0000 |
| commit | 5ec50ce7f2d7f1490218455af5d7fe3465720b15 (patch) | |
| tree | bc77d03a2ed9644d53321b5f5874cd70083c7102 | |
| parent | 79e9345f289380833bac80c5905560f19b9a5f75 (diff) | |
| download | webtrees-5ec50ce7f2d7f1490218455af5d7fe3465720b15.tar.gz webtrees-5ec50ce7f2d7f1490218455af5d7fe3465720b15.tar.bz2 webtrees-5ec50ce7f2d7f1490218455af5d7fe3465720b15.zip | |
Fix: help text for username incorrect. It is case-insensitive.
| -rw-r--r-- | help_text.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/help_text.php b/help_text.php index 611d49616b..1b0d9fe8c4 100644 --- a/help_text.php +++ b/help_text.php @@ -2894,7 +2894,7 @@ case 'username': '<p>'. WT_I18N::translate('Usernames are case-insensitive and ignore accented letters, so that “chloe”, “chloë”, and “Chloe” are considered to be the same.'). '</p><p>'. - WT_I18N::translate('Usernames may not contain the following characters: < > " %% { } ;') + WT_I18N::translate('Usernames may not contain the following characters: < > " %% { } ;'). '</p>'; break; |
