[Koha-cvs] koha/C4 Biblio.pm [rel_3_0]

Bruno Toumi btoumi at ouestprovence.fr
Thu Oct 19 13:57:05 CEST 2006


CVSROOT:	/sources/koha
Module name:	koha
Branch:		rel_3_0
Changes by:	Bruno Toumi <btoumi>	06/10/19 11:57:05

Modified files:
	C4             : Biblio.pm 

Log message:
	bug fix : wrong syntax in sub call 

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/koha/C4/Biblio.pm?cvsroot=koha&only_with_tag=rel_3_0&r1=1.178.2.17&r2=1.178.2.18

Patches:
Index: Biblio.pm
===================================================================
RCS file: /sources/koha/koha/C4/Biblio.pm,v
retrieving revision 1.178.2.17
retrieving revision 1.178.2.18
diff -u -b -r1.178.2.17 -r1.178.2.18
--- Biblio.pm	17 Oct 2006 09:54:42 -0000	1.178.2.17
+++ Biblio.pm	19 Oct 2006 11:57:04 -0000	1.178.2.18
@@ -775,7 +775,7 @@
         }
         substr($string,22,6,"frey50");
         unless ($record->subfield(100,"a")){
-            $record->insert_grouped_fields(MARC::Field->new(100,"","","a"=>$string));
+            $record->insert_grouped_field(MARC::Field->new(100,"","","a"=>$string));
         }
     }
     $sth =$dbh->prepare("update biblioitems set marc=?,marcxml=?  where biblionumber=?"   );
@@ -3824,8 +3824,11 @@
 
 =cut
 
-# $Id: Biblio.pm,v 1.178.2.17 2006/10/17 09:54:42 toins Exp $
+# $Id: Biblio.pm,v 1.178.2.18 2006/10/19 11:57:04 btoumi Exp $
 # $Log: Biblio.pm,v $
+# Revision 1.178.2.18  2006/10/19 11:57:04  btoumi
+# bug fix : wrong syntax in sub call
+#
 # Revision 1.178.2.17  2006/10/17 09:54:42  toins
 # ccode (re)-integration.
 #





More information about the Koha-cvs mailing list