@@ -, +, @@ 10 years - Click on 'Patrons' from the main menu, select 'New patron' - Set input focus to the 'Date of birth' input field, the date selection widget should show up. - The year selection drop-down will only show current year minus 10. - Apply the patch - Go back to the same screen, set input focus to the 'Date of birth' field. - The year selection drop-down should show current year minus 120. --- koha-tmpl/intranet-tmpl/prog/en/modules/members/memberentrygen.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/memberentrygen.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/members/memberentrygen.tt @@ -33,7 +33,7 @@ update_category_code( category_code ); } [% END %] - $("#dateofbirth").datepicker({ maxDate: "-1D" }); + $("#dateofbirth").datepicker({ maxDate: "-1D", yearRange: "c-120:" }); $("#entryform").validate({ rules: { email: { --