Revert "If itemnumber is sent to catalogue/moredetail.pl use it"

Applied wrong version of patch.  Oops.

This reverts commit 9eb1465b28.
This commit is contained in:
Galen Charlton 2008-09-02 15:36:02 -05:00
parent aa4c6ff62f
commit 0fb1c26d1c

View file

@ -51,7 +51,6 @@ my ($template, $loggedinuser, $cookie) = get_template_and_user({
my $biblionumber=$query->param('biblionumber');
my $title=$query->param('title');
my $itemnumber=$query->param('itemnumber');
# my $bi=$query->param('bi');
# $bi = $biblionumber unless $bi;
my $data=GetBiblioData($biblionumber);
@ -85,10 +84,6 @@ my $itemtypes = GetItemTypes;
$data->{'itemtypename'} = $itemtypes->{$data->{'itemtype'}}->{'description'};
$results[0]=$data;
foreach my $item (@items){
if ( $itemnumber && $itemnumber != $item->{'itemnumber'} ) {
undef $item;
next;
}
$item->{itemlostloop}= GetAuthorisedValues(GetAuthValCode('items.itemlost',$fw),$item->{itemlost}) if GetAuthValCode('items.itemlost',$fw);
$item->{itemdamagedloop}= GetAuthorisedValues(GetAuthValCode('items.damaged',$fw),$item->{damaged}) if GetAuthValCode('items.damaged',$fw);
$item->{'collection'} = $ccodes->{$item->{ccode}};