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
The HTML "pattern" statement is not working correctly to filter out special characters in the Name field. If the title instructions are followed everything works properly, but if "not allowed" special characters are used the filter does not reject them, and URL encoded sequences are inserted for the special characters. I have a solution prepared and will release it with the next general release.
FYI, solutions suggested on Stack Overflow (principally making the hypen or dash character first or last in the custom character definition) do not seem to work ... not sure why, so:
pattern='[0-9a-zA-Z_.-]{1,15}' doesn't work
pattern='[0-9a-zA-Z_.-]{1,15}' doesn't work
pattern='[-0-9a-zA-Z_.]{1,15}' doesn't work
pattern='[\w.-]{1,15}' does work
I will fix it.
The text was updated successfully, but these errors were encountered:
The HTML "pattern" statement is not working correctly to filter out special characters in the Name field. If the title instructions are followed everything works properly, but if "not allowed" special characters are used the filter does not reject them, and URL encoded sequences are inserted for the special characters. I have a solution prepared and will release it with the next general release.
FYI, solutions suggested on Stack Overflow (principally making the hypen or dash character first or last in the custom character definition) do not seem to work ... not sure why, so:
pattern='[0-9a-zA-Z_.-]{1,15}' doesn't work
pattern='[0-9a-zA-Z_.-]{1,15}' doesn't work
pattern='[-0-9a-zA-Z_.]{1,15}' doesn't work
pattern='[\w.-]{1,15}' does work
I will fix it.
The text was updated successfully, but these errors were encountered: