From 8ad2785d65acbfbda3792b4b02562a1c612d7918 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20V=C3=A9ron?= Date: Wed, 10 Feb 2016 11:47:57 +0100 Subject: [PATCH] Bug 15374: (followup) Remove 2 obsolete lines from opac-user.pl This patch removes 2 obsolete lines from opac-user.pl, see comment #33 --- opac/opac-user.pl | 3 --- 1 file changed, 3 deletions(-) diff --git a/opac/opac-user.pl b/opac/opac-user.pl index 7a2eaf9..62202a1 100755 --- a/opac/opac-user.pl +++ b/opac/opac-user.pl @@ -123,9 +123,6 @@ if ( $borr->{'amountoutstanding'} < 0 ) { $borr->{'amountoutstanding'} = -1 * ( $borr->{'amountoutstanding'} ); } -my @bordat; -$bordat[0] = $borr; - # Warningdate is the date that the warning starts appearing if ( $borr->{'dateexpiry'} && C4::Context->preference('NotifyBorrowerDeparture') ) { my $days_to_expiry = Date_to_Days( $warning_year, $warning_month, $warning_day ) - Date_to_Days( $today_year, $today_month, $today_day ); -- 1.7.10.4