diff options
Diffstat (limited to '')
-rw-r--r-- | include/functions_user.inc.php | 4 | ||||
-rw-r--r-- | language/en_UK/common.lang.php | 1 | ||||
-rw-r--r-- | language/fr_FR/common.lang.php | 1 |
3 files changed, 6 insertions, 0 deletions
diff --git a/include/functions_user.inc.php b/include/functions_user.inc.php index cc8562323..549daf7cb 100644 --- a/include/functions_user.inc.php +++ b/include/functions_user.inc.php @@ -112,6 +112,10 @@ function register_user($login, $password, $mail_address, { array_push($errors, l10n('this login is already used')); } + if ($login != strip_tags($login)) + { + array_push($errors, l10n('html tags are not allowed in login')); + } $mail_error = validate_mail_address(null, $mail_address); if ('' != $mail_error) { diff --git a/language/en_UK/common.lang.php b/language/en_UK/common.lang.php index ac792a23a..97f528c61 100644 --- a/language/en_UK/common.lang.php +++ b/language/en_UK/common.lang.php @@ -358,4 +358,5 @@ $lang['This author modified following comment:'] = 'This author modified followi $lang['This author removed the comment with id %d'] = 'This author removed the comment with id %d'; $lang['delete this comment'] = "delete this comment"; $lang['validate this comment'] = 'validate this comment'; +$lang['html tags are not allowed in login'] = 'html tags are not allowed in login'; ?>
\ No newline at end of file diff --git a/language/fr_FR/common.lang.php b/language/fr_FR/common.lang.php index 09a563cec..10b393f8f 100644 --- a/language/fr_FR/common.lang.php +++ b/language/fr_FR/common.lang.php @@ -358,4 +358,5 @@ $lang['This author modified following comment:'] = 'Cet auteur a modifié le com $lang['This author removed the comment with id %d'] = 'Cet auteur a supprimé le commentaire portant l\'identifiant %d'; $lang['delete this comment'] = "supprimer ce commentaire"; $lang['validate this comment'] = 'valider ce commentaire'; +$lang['html tags are not allowed in login'] = 'les balises html ne sont pas autorisées dans le login'; ?>
\ No newline at end of file |