17 Jan
2017
17 Jan
'17
3:04 p.m.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=17855 --- Comment #87 from M. Tompsett <mtompset@hotmail.com> --- (In reply to Owen Leonard from comment #86)
I think the regex on the patron card number is creating the side-effect that the form will not accept a card number with a zero in it.
pattern="[A-Za-z1-9 ]+" -- This is a problem for description in onboarding step 4, not just cardnumber is onboarding step 3. pattern="[A-Za-z1-9][A-Za-z0-9 ]*" -- This forces the first character to not be 0 or space, and have at least one character. I think this will work for cardnumber and description. -- You are receiving this mail because: You are watching all bug changes.