Bug 12592 - Minor correction for C4::DelBiblio documentation
authorPetter Goksoyr Asen <boutrosboutrosboutros@gmail.com>
Thu, 17 Jul 2014 09:18:10 +0000 (11:18 +0200)
committerTomas Cohen Arazi <tomascohen@gmail.com>
Thu, 17 Jul 2014 15:43:59 +0000 (12:43 -0300)
The function header says that DelBiblio checks to make sure there aren't
any issues on any of the items. What the code does, on the other hand,
is to check whether biblio has any items attached, and refuses to
delete biblio if it has any.

Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl>
Signed-off-by: Tomas Cohen Arazi <tomascohen@gmail.com>
C4/Biblio.pm

index a100500..f5903f3 100644 (file)
@@ -410,9 +410,9 @@ sub ModBiblioframework {
   my $error = &DelBiblio($biblionumber);
 
 Exported function (core API) for deleting a biblio in koha.
-Deletes biblio record from Zebra and Koha tables (biblio,biblioitems,items)
-Also backs it up to deleted* tables
-Checks to make sure there are not issues on any of the items
+Deletes biblio record from Zebra and Koha tables (biblio & biblioitems)
+Also backs it up to deleted* tables.
+Checks to make sure that the biblio has no items attached.
 return:
 C<$error> : undef unless an error occurs