https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=18298 --- Comment #44 from Jonathan Druart <jonathan.druart@bugs.koha-community.org> --- (In reply to Jacek Ablewicz from comment #43)
The concept of "upper and lower case characters" implemented by this patchset may be a bit limited - for many non-english-speaking countries, and especially for the countries which don't use latin-derived alphabets.
Replacing [a-z] with \p{Ll} and [A-Z] with \p{Lu} will probably work just fine in the perl regexps, but would it work in the javascript / jQuery validation related code parts as well?
Yes you are totally right. That's how I started to implement this feature, but I switched back to the naive way when I did not found a JS equivalent. -- You are receiving this mail because: You are watching all bug changes.