You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If I try to add a new user with a password containing a "@" it is refused with the message: "The password field must have alphabetical characters, the # and @ symbols, numbers, underscores and dashes only" - while indeed no other characters have been used.
The problem seems to be in the function alpha_dash in the file /application/helpers/valid.php that doesn't allow @.
So you could add @ (and probably also the "#") to the list of allowed characters, or you fix the error message.
The text was updated successfully, but these errors were encountered:
If I try to add a new user with a password containing a "@" it is refused with the message: "The password field must have alphabetical characters, the # and @ symbols, numbers, underscores and dashes only" - while indeed no other characters have been used.
The problem seems to be in the function alpha_dash in the file /application/helpers/valid.php that doesn't allow @.
So you could add @ (and probably also the "#") to the list of allowed characters, or you fix the error message.
The text was updated successfully, but these errors were encountered: