From bbc0462a73407116ad9029f4555f6a2f4e817587 Mon Sep 17 00:00:00 2001 From: Petter Goksoyr Asen Date: Thu, 17 Jul 2014 11:18:10 +0200 Subject: [PATCH] Bug 12592 - Minor correction for C4::DelBiblio documentation 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 Signed-off-by: Tomas Cohen Arazi --- C4/Biblio.pm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/C4/Biblio.pm b/C4/Biblio.pm index a1005001e9..f5903f362e 100644 --- a/C4/Biblio.pm +++ b/C4/Biblio.pm @@ -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 -- 2.39.2