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

Joshua Ferraro jmf at kados.org
Sat Oct 7 19:22:10 CEST 2006


CVSROOT:	/sources/koha
Module name:	koha
Branch:		dev_week
Changes by:	Joshua Ferraro <kados>	06/10/07 17:22:10

Modified files:
	C4             : Biblio.pm 

Log message:
	add ccode when adding a new biblioitem

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/koha/C4/Biblio.pm?cvsroot=koha&only_with_tag=dev_week&r1=1.115.2.51.2.37&r2=1.115.2.51.2.38

Patches:
Index: Biblio.pm
===================================================================
RCS file: /sources/koha/koha/C4/Biblio.pm,v
retrieving revision 1.115.2.51.2.37
retrieving revision 1.115.2.51.2.38
diff -u -b -r1.115.2.51.2.37 -r1.115.2.51.2.38
--- Biblio.pm	5 Oct 2006 23:44:40 -0000	1.115.2.51.2.37
+++ Biblio.pm	7 Oct 2006 17:22:10 -0000	1.115.2.51.2.38
@@ -1958,7 +1958,7 @@
 									size		 = ?,				lccn		 = ?,
 									marc		 = ?,	
 											
-									place		 = ?, lcsort=?
+									place		 = ?, lcsort=?, ccode = ?
 									"
     );
 my ($lcsort)=calculatelc($biblioitem->{'classification'}).$biblioitem->{'subclass'};
@@ -1973,7 +1973,7 @@
         $biblioitem->{'volumeddesc'},    $biblioitem->{'illus'},
         $biblioitem->{'pages'},          $biblioitem->{'bnotes'},
         $biblioitem->{'size'},           $biblioitem->{'lccn'},
-        $biblioitem->{'marc'},           $biblioitem->{'place'},$lcsort
+        $biblioitem->{'marc'},           $biblioitem->{'place'},$lcsort,$biblioitem->{'ccode'}
     );
     $sth->finish;
 
@@ -3164,8 +3164,11 @@
 
 =cut
 
-# $Id: Biblio.pm,v 1.115.2.51.2.37 2006/10/05 23:44:40 kados Exp $
+# $Id: Biblio.pm,v 1.115.2.51.2.38 2006/10/07 17:22:10 kados Exp $
 # $Log: Biblio.pm,v $
+# Revision 1.115.2.51.2.38  2006/10/07 17:22:10  kados
+# add ccode when adding a new biblioitem
+#
 # Revision 1.115.2.51.2.37  2006/10/05 23:44:40  kados
 # fix for bug 1177: Koha table entries not deleted when biblio deleted
 #





More information about the Koha-cvs mailing list