From 40d52ff8f7947986ae9e10d0dc4ba9e4e1591e55 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 3919eb1b45..40209515ab 100755 --- a/members/moremember.pl +++ b/members/moremember.pl @@ -301,7 +301,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