[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Koha-cvs] koha/circ circulation.pl [rel_3_0]
From: |
Antoine Farnault |
Subject: |
[Koha-cvs] koha/circ circulation.pl [rel_3_0] |
Date: |
Thu, 02 Nov 2006 14:06:22 +0000 |
CVSROOT: /sources/koha
Module name: koha
Branch: rel_3_0
Changes by: Antoine Farnault <toins> 06/11/02 14:06:22
Modified files:
circ : circulation.pl
Log message:
removing Data::Dumper
CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/koha/circ/circulation.pl?cvsroot=koha&only_with_tag=rel_3_0&r1=1.97.2.4&r2=1.97.2.5
Patches:
Index: circulation.pl
===================================================================
RCS file: /sources/koha/koha/circ/circulation.pl,v
retrieving revision 1.97.2.4
retrieving revision 1.97.2.5
diff -u -b -r1.97.2.4 -r1.97.2.5
--- circulation.pl 2 Nov 2006 13:30:28 -0000 1.97.2.4
+++ circulation.pl 2 Nov 2006 14:06:22 -0000 1.97.2.5
@@ -43,8 +43,6 @@
use C4::Reserves2;
use C4::Circulation::Date;
-use Data::Dumper; # FIXME :: don't forget to remove.
-
#
# PARAMETERS READING
#
@@ -310,7 +308,7 @@
my @todaysissues;
my @previousissues;
my $issueslist = getissues($borrower);
- warn "issueslist=>".Dumper($issueslist);
+
# split in 2 arrays for today & previous
my $dbh = C4::Context->dbh;
foreach my $it ( keys %$issueslist ) {