diff options
Diffstat (limited to 'interface-definitions/include/interface/authentication.xml.i')
-rw-r--r-- | interface-definitions/include/interface/authentication.xml.i | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/interface-definitions/include/interface/authentication.xml.i b/interface-definitions/include/interface/authentication.xml.i index 8bb094da7..ac06faef5 100644 --- a/interface-definitions/include/interface/authentication.xml.i +++ b/interface-definitions/include/interface/authentication.xml.i @@ -12,9 +12,9 @@ <description>Username</description> </valueHelp> <constraint> - <regex>[[:alnum:]][-_#@[:alnum:]]{0,127}</regex> + <regex>[[:ascii:]]{1,128}</regex> </constraint> - <constraintErrorMessage>Username is limited to alphanumerical characters, -, _, #, and @ with a total lenght of 128</constraintErrorMessage> + <constraintErrorMessage>Username is limited to ASCII characters only, with a total length of 128</constraintErrorMessage> </properties> </leafNode> <leafNode name="password"> @@ -27,7 +27,7 @@ <constraint> <regex>[[:ascii:]]{1,128}</regex> </constraint> - <constraintErrorMessage>Password is limited to ASCII characters only, with a total lenght of 128</constraintErrorMessage> + <constraintErrorMessage>Password is limited to ASCII characters only, with a total length of 128</constraintErrorMessage> </properties> </leafNode> </children> |