From c83bbcbffe9feee67b5c7992d3c8f06c843c2ecf Mon Sep 17 00:00:00 2001 From: Galen Charlton Date: Mon, 15 Sep 2008 22:00:42 -0400 Subject: [PATCH] bug 2609: display correct requested title In databases where biblionumber is not necessarily the same as biblioitemnumber, the title of certain hold requests displayed by moremember.pl could be drawn from the wrong record. Signed-off-by: Galen Charlton --- members/moremember.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/members/moremember.pl b/members/moremember.pl index 87a5659182..478969b099 100755 --- a/members/moremember.pl +++ b/members/moremember.pl @@ -302,7 +302,7 @@ if ($borrowernumber) { # if we don't have a reserv on item, we put the biblio infos and the waiting position if ( $getiteminfo->{'title'} eq '' ) { - my $getbibinfo = GetBiblioItemData( $num_res->{'biblionumber'} ); + my $getbibinfo = GetBiblioData( $num_res->{'biblionumber'} ); my $getbibtype = getitemtypeinfo( $getbibinfo->{'itemtype'} ); $getreserv{color} = 'inwait'; $getreserv{title} = $getbibinfo->{'title'}; -- 2.39.5