From b1109c5b318a4a3bdff91dcff87c0c5e39a82749 Mon Sep 17 00:00:00 2001 From: kados Date: Fri, 10 Feb 2006 01:36:17 +0000 Subject: [PATCH] Fixes a bug I experienced with missing qw(:standard) from CGI declaration --- import/breeding.pl | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/import/breeding.pl b/import/breeding.pl index ab3a30e5c6..c65cf2f913 100755 --- a/import/breeding.pl +++ b/import/breeding.pl @@ -30,7 +30,7 @@ use strict; # standard or CPAN modules used -use CGI; +use CGI qw(:standard); use DBI; # Koha modules used @@ -106,6 +106,9 @@ my $file; #--------------- # log cleared, as marcimport is (almost) rewritten from scratch. # $Log$ +# Revision 1.2.4.5 2006/02/10 01:36:17 kados +# Fixes a bug I experienced with missing qw(:standard) from CGI declaration +# # Revision 1.2.4.4 2006/02/05 21:59:21 kados # Adds script support for IntranetNav ... see mail to koha-devel for # details -- 2.39.5