From 0f11e39111c8d000a122dfe7d5dd858204077f04 Mon Sep 17 00:00:00 2001 From: Brett Wilkins Date: Mon, 29 Aug 2011 16:48:35 +1200 Subject: [PATCH] Separating perl standard uses from koha uses http://bugs.koha-community.org/show_bug.cgi?id=6724 --- circ/reserveratios.pl | 5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff --git a/circ/reserveratios.pl b/circ/reserveratios.pl index 9115059..1517adf 100755 --- a/circ/reserveratios.pl +++ b/circ/reserveratios.pl @@ -21,13 +21,14 @@ use strict; use warnings; +use CGI; +use Date::Calc qw/Today Add_Delta_YM/; + use C4::Context; use C4::Output; -use CGI; use C4::Auth; use C4::Dates qw/format_date format_date_in_iso/; use C4::Debug; -use Date::Calc qw/Today Add_Delta_YM/; use C4::Biblio qw/GetMarcBiblio GetRecordValue GetFrameworkCode/; my $input = new CGI; -- 1.7.5.4