View | Details | Raw Unified | Return to bug 28118
Collapse All | Expand All

(-)a/reserve/request.pl (-2 / +1 lines)
Lines 67-73 my ( $template, $borrowernumber, $cookie, $flags ) = get_template_and_user( Link Here
67
);
67
);
68
68
69
my $showallitems = $input->param('showallitems');
69
my $showallitems = $input->param('showallitems');
70
my $pickup = $input->param('pickup');
70
my $pickup = $input->param('pickup') // C4::Context->userenv->{branch};
71
71
72
my $itemtypes = { map { $_->{itemtype} => $_ } @{ Koha::ItemTypes->search_with_localization->unblessed } };
72
my $itemtypes = { map { $_->{itemtype} => $_ } @{ Koha::ItemTypes->search_with_localization->unblessed } };
73
73
74
- 

Return to bug 28118