From e43141917082ae1784a085e1ba9c54b16bdcd28a Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Wed, 5 Jan 2022 11:25:12 +0100 Subject: [PATCH] Bug 29543: Remove inputfocus variable It's not used in template --- opac/sco/sco-main.pl | 6 ------ 1 file changed, 6 deletions(-) diff --git a/opac/sco/sco-main.pl b/opac/sco/sco-main.pl index cab91b7a4bc..4dbd97aabea 100755 --- a/opac/sco/sco-main.pl +++ b/opac/sco/sco-main.pl @@ -28,8 +28,6 @@ # The checkout permission comes form the CGI cookie/session of a staff user. # The patron is not really logging in here in the same way as they do on the # rest of the OPAC. So don't confuse loggedinuser with the patron user. -# -# FIXME: inputfocus not really used in TMPL use Modern::Perl; @@ -255,7 +253,6 @@ elsif ( $patron && ( $op eq 'checkout' ) ) { confirm => "Issuing title: " . $item->biblio->title, barcode => $barcode, hide_main => 1, - inputfocus => 'confirm', ); } } @@ -334,10 +331,7 @@ if ($patron) { opacnote => $patron->opacnote, ); - my $inputfocus = ($return_only == 1) ? 'returnbook' : - ($confirm_required == 1) ? 'confirm' : 'barcode' ; $template->param( - inputfocus => $inputfocus, nofines => 1, ); -- 2.25.1