From ffdcd06fac459cb348f752e28d2b753a408bf87e Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Thu, 29 Apr 2010 11:45:19 -0400 Subject: [PATCH] Fix for Bug 4424, MARC Framework deletion incorrectly reports usage count Thanks to Thomas Dukleth for the fix. Signed-off-by: Galen Charlton --- admin/biblio_framework.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/admin/biblio_framework.pl b/admin/biblio_framework.pl index f7a7091359..f2c147e712 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}; -- 2.39.2