[Koha-cvs] koha/acqui.simple addbiblio.pl [rel_2_2]

Henri-Damien LAURENT laurenthdl at alinto.com
Thu Oct 12 09:22:31 CEST 2006


CVSROOT:	/sources/koha
Module name:	koha
Branch:		rel_2_2
Changes by:	Henri-Damien LAURENT <hdl>	06/10/12 07:22:31

Modified files:
	acqui.simple   : addbiblio.pl 

Log message:
	BUG FIXING : changing ' into " for $tag_agged_field to get processed in add_field

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/koha/acqui.simple/addbiblio.pl?cvsroot=koha&only_with_tag=rel_2_2&r1=1.52.2.55&r2=1.52.2.56

Patches:
Index: addbiblio.pl
===================================================================
RCS file: /sources/koha/koha/acqui.simple/Attic/addbiblio.pl,v
retrieving revision 1.52.2.55
retrieving revision 1.52.2.56
diff -u -b -r1.52.2.55 -r1.52.2.56
--- addbiblio.pl	22 Sep 2006 15:49:50 -0000	1.52.2.55
+++ addbiblio.pl	12 Oct 2006 07:22:31 -0000	1.52.2.56
@@ -1,6 +1,6 @@
 #!/usr/bin/perl
 
-# $Id: addbiblio.pl,v 1.52.2.55 2006/09/22 15:49:50 tipaul Exp $
+# $Id: addbiblio.pl,v 1.52.2.56 2006/10/12 07:22:31 hdl Exp $
 
 # Copyright 2000-2002 Katipo Communications
 #
@@ -573,7 +573,7 @@
 		$record=MARC::Record->new_from_xml($xml,C4::Context->preference('TemplateEncoding'),C4::Context->preference('marcflavour'));
 	}
 	for (my $i=1;$i<=$cntrepeatfield;$i++){
-        my $field = MARC::Field->new("$addedfield",'','','$tagaddfield_subfield' => "");
+        my $field = MARC::Field->new("$addedfield",'','',"$tagaddfield_subfield" => "");
         $record->append_fields($field);
     }
 	build_tabs ($template, $record, $dbh,$encoding);





More information about the Koha-cvs mailing list