[Koha-patches] [PATCH] Fix for Bug 4424, MARC Framework deletion incorrectly reports usage count

Owen Leonard oleonard at myacpl.org
Thu Apr 29 17:45:19 CEST 2010


Thanks to Thomas Dukleth for the fix.
---
 admin/biblio_framework.pl |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/admin/biblio_framework.pl b/admin/biblio_framework.pl
index f7a7091..f2c147e 100755
--- a/admin/biblio_framework.pl
+++ b/admin/biblio_framework.pl
@@ -91,7 +91,7 @@ if ($op eq 'add_form') {
 # called by default form, used to confirm deletion of data in DB
 } elsif ($op eq 'delete_confirm') {
 	# Check both categoryitem and biblioitems, see Bug 199
-    my $sth = $dbh->prepare("select count(*) as total from marc_tag_structure where frameworkcode=?");
+    my $sth = $dbh->prepare("select count(*) as total from biblio where frameworkcode=?");
     $sth->execute($frameworkcode);
     my $total = $sth->fetchrow_hashref->{total};
 
-- 
1.6.3.3




More information about the Koha-patches mailing list