From e86d5555bf1fa95381857ecd028b262a44c1108c Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Tue, 20 Nov 2012 14:34:09 +0100 Subject: [PATCH] Bug 9076: Followup: FIX ergonomic issues If no criteria is given, the form was submitted. Labels were wrong Signed-off-by: Kyle M Hall Signed-off-by: Jonathan Druart --- .../intranet-tmpl/prog/en/modules/tools/cleanborrowers.tt | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/cleanborrowers.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/cleanborrowers.tt index 0b745ce..5aa1865 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/cleanborrowers.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/cleanborrowers.tt @@ -12,14 +12,12 @@ if((form.checkbox[0].checked)){ if ( (!form.date1.value) && (!form.borrower_dateexpiry.value) && (!form.borrower_categorycode.value) ){ alert(_("Please enter at least one criterion for deletion!")); - document.form.date1.focus(); return false; } } if((form.checkbox[1].checked)){ if(!(form.date2.value)){ alert(_("please enter a date !")); - document.form.date2.focus(); return false; } } @@ -57,9 +55,9 @@
What do you want to do ? -

Delete borrowers

+

- + [% INCLUDE 'date-format.inc' %]

@@ -77,8 +75,8 @@ [% END %] -

Anonymize history

- +

+ [% INCLUDE 'date-format.inc' %]

-- 1.7.10.4