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

(-)a/circ/pendingreserves.pl (-2 / +1 lines)
Lines 36-42 use Date::Calc qw/Today Add_Delta_YMD/; Link Here
36
my $input = new CGI;
36
my $input = new CGI;
37
my $startdate=$input->param('from');
37
my $startdate=$input->param('from');
38
my $enddate=$input->param('to');
38
my $enddate=$input->param('to');
39
my $run_report=$input->param('run_report');
39
my $run_report = ( not defined $input->param('run_report') ) ? 1 : $input->param('run_report');
40
40
41
my $theme = $input->param('theme');    # only used if allowthemeoverride is set
41
my $theme = $input->param('theme');    # only used if allowthemeoverride is set
42
42
43
- 

Return to bug 8454