Gossamer Forum
Home : Products : Others : Gossamer Community :

signup_username_regex

Quote Reply
signup_username_regex
Hi,
my signup username regex in community looks like this and works fine except users can not use the german keys ü ä ö
Code:
signup_username_regex ^[\w\-\.]{3,30}$

Is there a username regex which includes these keys, cause as far I can see community and glinks works fine with ü ä ö in usernames!

Thanks
Matthias

Matthias
gpaed.de
Quote Reply
Re: [Matthias70] signup_username_regex In reply to
Hi,
I have changed
Code:
signup_username_regex ^[\w\-\.]{3,30}$
to

Code:
signup_username_regex ^[\wäöüÄÖÜß\-\.]{3,30}$

Just to allow the letters ä ö ü Ä Ö Ü ß in Usernames

Seems to work fine. But please tell me if that change is complete nonsens...

Thanks
Matthias

Matthias
gpaed.de