From 624be1b1a9584f53925a40afb70e7a05014984a4 Mon Sep 17 00:00:00 2001 From: hdl Date: Mon, 9 Jul 2007 13:04:55 +0000 Subject: [PATCH] Bug Fixing : Dynamic change of framework in edition wouldnot change framework in selection list --- catalogue/MARCdetail.pl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/catalogue/MARCdetail.pl b/catalogue/MARCdetail.pl index b0854f0472..de2735d0e4 100755 --- a/catalogue/MARCdetail.pl +++ b/catalogue/MARCdetail.pl @@ -94,7 +94,8 @@ sub get_authorised_value_desc ($$$$$$) { my $query = new CGI; my $dbh = C4::Context->dbh; my $biblionumber = $query->param('biblionumber'); -my $frameworkcode = GetFrameworkCode( $biblionumber ); +my $frameworkcode = $query->param('frameworkcode'); +$frameworkcode = GetFrameworkCode( $biblionumber ) unless ($frameworkcode); my $popup = $query->param('popup') ; # if set to 1, then don't insert links, it's just to show the biblio -- 2.20.1