koha-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

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


From: Joshua Ferraro
Subject: [Koha-cvs] koha/C4 Biblio.pm [dev_week]
Date: Sun, 24 Sep 2006 20:37:32 +0000

CVSROOT:        /sources/koha
Module name:    koha
Branch:         dev_week
Changes by:     Joshua Ferraro <kados>  06/09/24 20:37:32

Modified files:
        C4             : Biblio.pm 

Log message:
        missed items

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.23&r2=1.115.2.51.2.24

Patches:
Index: Biblio.pm
===================================================================
RCS file: /sources/koha/koha/C4/Biblio.pm,v
retrieving revision 1.115.2.51.2.23
retrieving revision 1.115.2.51.2.24
diff -u -b -r1.115.2.51.2.23 -r1.115.2.51.2.24
--- Biblio.pm   24 Sep 2006 20:35:57 -0000      1.115.2.51.2.23
+++ Biblio.pm   24 Sep 2006 20:37:31 -0000      1.115.2.51.2.24
@@ -348,7 +348,7 @@
         my $items_sth = $dbh->prepare("SELECT itemnumber FROM items WHERE 
biblioitemnumber=?");
         $items_sth->execute($biblioitemnumber);
         while ( my $itemnumber = $items_sth->fetchrow ) {
-            $error = &_kohaDeleteItems( $dbh, $itemnumber );
+            $error = &_koha_delete_items( $dbh, $itemnumber );
             return $error if $error;
         }
     }
@@ -2169,9 +2169,9 @@
 }
 
 
-=item _kohaDeleteItems
+=item _koha_delete_items
 
-$error = _kohaDeleteItems($dbh,$itemnumber);
+$error = _koha_delete_items($dbh,$itemnumber);
 
 Internal sub for deleting from items table -- also saves to deleteditems
 
@@ -2181,7 +2181,7 @@
 =cut
 # FIXME: add error handling
 
-sub _kohaDeleteItems {
+sub _koha_delete_items {
     my ( $dbh, $itemnumber ) = @_;
 
     # get all the data for this item
@@ -2991,10 +2991,10 @@
 
 =cut
 
-# $Id: Biblio.pm,v 1.115.2.51.2.23 2006/09/24 20:35:57 kados Exp $
+# $Id: Biblio.pm,v 1.115.2.51.2.24 2006/09/24 20:37:31 kados Exp $
 # $Log: Biblio.pm,v $
-# Revision 1.115.2.51.2.23  2006/09/24 20:35:57  kados
-# renaming internal routines from _kohaDelete* to _koha_delete_*
+# Revision 1.115.2.51.2.24  2006/09/24 20:37:31  kados
+# missed items
 #
 # Revision 1.115.2.51.2.22  2006/09/24 20:29:25  kados
 # renaming OLDnewbiblio* to _koha_add_biblio*. These are strictly internal




reply via email to

[Prev in Thread] Current Thread [Next in Thread]