From b3e690fdf53b023f2fefb510a6fd67e3363480ce Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Wed, 1 Jun 2022 14:54:34 +0200 Subject: [PATCH] Bug 30746: Fix JS error on opac-memberentry Empty PatronSelfRegistrationBorrowerMandatoryField and PatronSelfRegistrationBorrowerUnwantedField Go to opac-memberentry.pl Notice the JS error Uncaught TypeError: j is undefined Apply this patch Go to opac-memberentry.pl => no JS error Fill the pref with some values Go to opac-memberentry.pl => Confirm that the fields you marked as mandatory as flagged accordinly on the UI Signed-off-by: Lucas Gass --- .../bootstrap/en/modules/opac-memberentry.tt | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-memberentry.tt b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-memberentry.tt index a7c60c48b2..cd146409d4 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-memberentry.tt +++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-memberentry.tt @@ -1076,9 +1076,21 @@ } }); - $("input.required,select.required,textarea.required").rules("add", { - required: true - }); + if ( $("input.required").length ) { + $("input.required").rules("add", { + required: true + }); + } + if ( $("select.required").length ) { + $("select.required").rules("add", { + required: true + }); + } + if ( $("textarea.required").length ) { + $("textarea.required").rules("add", { + required: true + }); + } [% IF patron.guarantor_relationships && !Koha.Preference('OPACPrivacy') %] -- 2.30.2