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

(-)a/circ/pendingbookings.pl (-2 / +1 lines)
Lines 38-44 my ( $template, $borrowernumber, $cookie, $flags ) = get_template_and_user( Link Here
38
38
39
my $today = dt_from_string();
39
my $today = dt_from_string();
40
my $startdate = $today->truncate( to => 'day' );
40
my $startdate = $today->truncate( to => 'day' );
41
my $enddate = $startdate->clone->add( days => 1 );
41
my $enddate = $startdate->clone->add( days => 7 );
42
42
43
$template->param(
43
$template->param(
44
    todaysdate          => $today,
44
    todaysdate          => $today,
45
- 

Return to bug 33736