[Koha-cvs] koha/import breeding.pl [rel_2_2]

Joshua Ferraro jmf at kados.org
Fri Feb 10 02:36:17 CET 2006


CVSROOT:	/sources/koha
Module name:	koha
Branch: 	rel_2_2
Changes by:	Joshua Ferraro <kados at savannah.gnu.org>	06/02/10 01:36:17

Modified files:
	import         : breeding.pl 

Log message:
	Fixes a bug I experienced with missing qw(:standard) from CGI declaration

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/koha/koha/import/breeding.pl.diff?only_with_tag=rel_2_2&tr1=1.2.4.4&tr2=1.2.4.5&r1=text&r2=text

Patches:
Index: koha/import/breeding.pl
diff -u koha/import/breeding.pl:1.2.4.4 koha/import/breeding.pl:1.2.4.5
--- koha/import/breeding.pl:1.2.4.4	Sun Feb  5 21:59:21 2006
+++ koha/import/breeding.pl	Fri Feb 10 01:36:17 2006
@@ -1,6 +1,6 @@
 #!/usr/bin/perl
 
-# $Id: breeding.pl,v 1.2.4.4 2006/02/05 21:59:21 kados Exp $
+# $Id: breeding.pl,v 1.2.4.5 2006/02/10 01:36:17 kados Exp $
 
 # Script for handling import of MARC data into Koha db
 #   and Z39.50 lookups
@@ -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 @@
 #---------------
 # log cleared, as marcimport is (almost) rewritten from scratch.
 # $Log: breeding.pl,v $
+# 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





More information about the Koha-cvs mailing list