Created attachment 4190 [details] [review] Corrects a validation problem on addbiblio.pl on IE8 On /cataloguing/addbiblio.pl : In some cases, the mandatory field validation popup doesn't appear when trying to add a new bibliographic record on IE8. It seems this line makes IE8 stop executing the AreMandatoriesNotOk function : document.getElementById(mandatories[i]).focus(); I replaced this line with its JQuery equivalent and it seems to fix the problem: $('#' + mandatories[i]).focus(); Patch attached
Created attachment 4192 [details] [review] Signed-off patch Signed-off patch includes one minor edit: I removed the commented-out line which the jQuery line replaces. We have git to track changes for us, we don't have to leave old code in. This patch fixes the problem, which I was able to reproduce in IE8 on Win7.
Just a detail : The commented line doesn't seem to have been removed in the signed-off patch...
> The commented line doesn't seem to have been removed in the signed-off patch... Indeed. My git-fu must be failing me today.
Created attachment 4961 [details] [review] proposed patch (passed QA) QA comment As for previous patch for IE8 * Koha not guaranteed to work on IE * I don't have any IE at hand * I've reintroduced the comment owen forgot to upload * I've checked the patch is harmless under FF * Frédérick & Owen says it worked for them Marking passed QA
Pushed, please test
There have been no further reports of problems so I am marking this bug resolved.