https://bugzilla.wikimedia.org/show_bug.cgi?id=58077
--- Comment #7 from Al Johnson <[email protected]> --- The fix above is not enough since the hidden stuff may not have had the hiddenBySF class added to them upon page load and it looks like mandatory but hidden fields are setup to be validated. Is that by design? So, this fix might not be valid: [root@ip-10-0-1-101 libs]# diff SemanticForms.js.ori SemanticForms.js 733c733 < jQuery("span.inputSpan.mandatoryFieldSpan").not(".hiddenBySF").each( function() { --- > > jQuery("span.inputSpan.mandatoryFieldSpan").not(".hiddenBySF").not(":hidden").each( > function() { 771c771,774 < jQuery("#" + sfdata.validationFunctions[i].input).closest(".multipleTemplateStarter").length == 0 ) { --- > jQuery("#" + > sfdata.validationFunctions[i].input).closest(".multipleTemplateStarter").length > == 0 && > // My Change: fix for bug > https://bugzilla.wikimedia.org/show_bug.cgi?id=58077 > jQuery("#" + > sfdata.validationFunctions[i].input).closest(".hiddenBySF").length == 0 && > jQuery("#" + > sfdata.validationFunctions[i].input + ":hidden").length == 0) { -- You are receiving this mail because: You are on the CC list for the bug. _______________________________________________ Wikibugs-l mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/wikibugs-l
