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 <lucas@bywatersolutions.com>

Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de>
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
(cherry picked from commit c699f05970)

Signed-off-by: Lucas Gass <lucas@bywatersolutions.com>
This commit is contained in:
Jonathan Druart 2022-06-01 14:54:34 +02:00 committed by Lucas Gass
parent 9b2793c8c1
commit ffddfb86aa

View file

@ -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') %]