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

(-)a/reserve/placerequest.pl (-3 / +3 lines)
Lines 49-55 my $checkitem = $input->param('checkitem'); Link Here
49
my $expirationdate = $input->param('expiration_date');
49
my $expirationdate = $input->param('expiration_date');
50
my $itemtype       = $input->param('itemtype') || undef;
50
my $itemtype       = $input->param('itemtype') || undef;
51
my $non_priority   = $input->param('non_priority');
51
my $non_priority   = $input->param('non_priority');
52
my $hold_group     = $input->param('hold_group') || undef;
52
my $hold_group_param     = $input->param('hold_group') || undef;
53
my $hold_group;
53
54
54
my $borrower = Koha::Patrons->find( $borrowernumber );
55
my $borrower = Koha::Patrons->find( $borrowernumber );
55
$borrower = $borrower->unblessed if $borrower;
56
$borrower = $borrower->unblessed if $borrower;
Lines 74-80 my $found; Link Here
74
75
75
if ( $type eq 'str8' && $borrower ) {
76
if ( $type eq 'str8' && $borrower ) {
76
77
77
    if ( @biblionumbers > 1 && $hold_group ) {
78
    if ( $hold_group_param ) {
78
        $hold_group = Koha::HoldGroup->new->store;
79
        $hold_group = Koha::HoldGroup->new->store;
79
    }
80
    }
80
81
81
- 

Return to bug 15516