From 3774707df52dd1d365d006fde120f519c37a5ea4 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 Content-Type: text/plain; charset=utf-8 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 --- C4/Biblio.pm | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/C4/Biblio.pm b/C4/Biblio.pm index a100500..f5903f3 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 -- 1.7.7.6