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

(-)a/circ/circulation.pl (-1 / +1 lines)
Lines 113-119 my ( $template, $loggedinuser, $cookie ) = get_template_and_user ( Link Here
113
    }
113
    }
114
);
114
);
115
115
116
my $op                      = $query->param('op');
116
my $op                      = $query->param('op') // '';
117
my $override_high_holds     = $query->param('override_high_holds');
117
my $override_high_holds     = $query->param('override_high_holds');
118
my $override_high_holds_tmp = $query->param('override_high_holds_tmp');
118
my $override_high_holds_tmp = $query->param('override_high_holds_tmp');
119
119
(-)a/circ/returns.pl (-2 / +1 lines)
Lines 143-149 foreach ( $query->param ) { Link Here
143
    push( @inputloop, \%input );
143
    push( @inputloop, \%input );
144
}
144
}
145
145
146
my $op          = $query->param('op');
146
my $op          = $query->param('op') // '';
147
147
148
############
148
############
149
# Deal with the requests....
149
# Deal with the requests....
150
- 

Return to bug 37865