Lines 81-89
my $title = $query->param('title');
Link Here
|
81 |
my $bi = $query->param('bi'); |
81 |
my $bi = $query->param('bi'); |
82 |
$bi = $biblionumber unless $bi; |
82 |
$bi = $biblionumber unless $bi; |
83 |
$itemnumber = $query->param('itemnumber'); |
83 |
$itemnumber = $query->param('itemnumber'); |
84 |
my $data = &GetBiblioData($biblionumber); |
84 |
my $data = &GetBiblioData($biblionumber); |
85 |
my $dewey = $data->{'dewey'}; |
85 |
my $dewey = $data->{'dewey'}; |
86 |
my $showallitems = $query->param('showallitems'); |
86 |
my $showallitems = $query->param('showallitems'); |
|
|
87 |
my $withdraw_error = $query->param('nowithdraw'); |
87 |
|
88 |
|
88 |
#coping with subscriptions |
89 |
#coping with subscriptions |
89 |
my $subscriptionsnumber = CountSubscriptionFromBiblionumber($biblionumber); |
90 |
my $subscriptionsnumber = CountSubscriptionFromBiblionumber($biblionumber); |
Lines 325-330
$template->param(
Link Here
|
325 |
); |
326 |
); |
326 |
|
327 |
|
327 |
$template->param( |
328 |
$template->param( |
|
|
329 |
withdraw_error => $withdraw_error, |
328 |
ITEM_DATA => \@item_data, |
330 |
ITEM_DATA => \@item_data, |
329 |
moredetailview => 1, |
331 |
moredetailview => 1, |
330 |
loggedinuser => $loggedinuser, |
332 |
loggedinuser => $loggedinuser, |
Lines 341-344
my $holds = $biblio->holds;
Link Here
|
341 |
$template->param( holdcount => $holds->count ); |
343 |
$template->param( holdcount => $holds->count ); |
342 |
|
344 |
|
343 |
output_html_with_http_headers $query, $cookie, $template->output; |
345 |
output_html_with_http_headers $query, $cookie, $template->output; |
344 |
|
|
|