[Koha-patches] [PATCH] overdue.pl further cleanup

Joe Atzberger joe.atzberger at liblime.com
Fri May 22 03:37:50 CEST 2009


Remove 9 unused variables.
---
 circ/overdue.pl |   10 ----------
 1 files changed, 0 insertions(+), 10 deletions(-)

diff --git a/circ/overdue.pl b/circ/overdue.pl
index c2e9fa7..b258b30 100755
--- a/circ/overdue.pl
+++ b/circ/overdue.pl
@@ -29,7 +29,6 @@ use C4::Dates qw/format_date/;
 use Date::Calc qw/Today/;
 
 my $input = new CGI;
-my $type    = $input->param(  'type' );
 my $order   = $input->param( 'order' ) || '';
 my $showall = $input->param('showall');
 
@@ -104,15 +103,6 @@ $template->param(
     showall      => $showall,
 );
 
-my $duedate;
-my $borrowernumber;
-my $itemnum;
-my $name;
-my $phone;
-my $email;
-my $title;
-my $author;
-
 my @sort_roots = qw(borrower title barcode date_due);
 push @sort_roots, map {$_ . " desc"} @sort_roots;
 my @order_loop = ({selected => $order ? 0 : 1});   # initial blank row
-- 
1.5.6.5




More information about the Koha-patches mailing list