From 9b182c79351f30ccbb444c10b6578dbeacc96b7c Mon Sep 17 00:00:00 2001 From: Paul Poulain Date: Wed, 12 Dec 2012 08:47:41 +0100 Subject: [PATCH] Bug 8033 follow-up removing tabs in indentation Signed-off-by: Elliott Davis --- opac/sco/sco-main.pl | 14 +++++++------- 1 files changed, 7 insertions(+), 7 deletions(-) diff --git a/opac/sco/sco-main.pl b/opac/sco/sco-main.pl index f53fcda..f8c6238 100755 --- a/opac/sco/sco-main.pl +++ b/opac/sco/sco-main.pl @@ -56,16 +56,16 @@ unless (C4::Context->preference('WebBasedSelfCheck')) { if (C4::Context->preference('AutoSelfCheckAllowed')) { - my $AutoSelfCheckID = C4::Context->preference('AutoSelfCheckID'); - my $AutoSelfCheckPass = C4::Context->preference('AutoSelfCheckPass'); - $query->param(-name=>'userid',-values=>[$AutoSelfCheckID]); - $query->param(-name=>'password',-values=>[$AutoSelfCheckPass]); + my $AutoSelfCheckID = C4::Context->preference('AutoSelfCheckID'); + my $AutoSelfCheckPass = C4::Context->preference('AutoSelfCheckPass'); + $query->param(-name=>'userid',-values=>[$AutoSelfCheckID]); + $query->param(-name=>'password',-values=>[$AutoSelfCheckPass]); $query->param(-name=>'koha_login_context',-values=>['sco']); } my ($template, $loggedinuser, $cookie) = get_template_and_user({ template_name => "sco/sco-main.tmpl", authnotrequired => 0, - flagsrequired => { circulate => "circulate_remaining_permissions" }, + flagsrequired => { circulate => "circulate_remaining_permissions" }, query => $query, type => "opac", debug => 1, @@ -239,13 +239,13 @@ if ($borrower->{cardnumber}) { patronlogin => $patronlogin, patronpw => $patronpw, noitemlinks => 1 , - borrowernumber => $borrower->{'borrowernumber'}, + borrowernumber => $borrower->{'borrowernumber'}, ); my $inputfocus = ($return_only == 1) ? 'returnbook' : ($confirm_required == 1) ? 'confirm' : 'barcode' ; $template->param( inputfocus => $inputfocus, - nofines => 1, + nofines => 1, "dateformat_" . C4::Context->preference('dateformat') => 1, ); if (C4::Context->preference('ShowPatronImageInWebBasedSelfCheck')) { -- 1.7.2.5