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

(-)a/circ/waitingreserves.pl (-4 / +2 lines)
Lines 25-36 use C4::Context; Link Here
25
use C4::Output;
25
use C4::Output;
26
use C4::Branch; # GetBranchName
26
use C4::Branch; # GetBranchName
27
use C4::Auth;
27
use C4::Auth;
28
use C4::Dates qw/format_date/;
29
use C4::Circulation;
28
use C4::Circulation;
30
use C4::Members;
29
use C4::Members;
31
use C4::Biblio;
30
use C4::Biblio;
32
use C4::Items;
31
use C4::Items;
33
32
use Koha::DateUtils;
34
use Date::Calc qw(
33
use Date::Calc qw(
35
  Today
34
  Today
36
  Add_Delta_Days
35
  Add_Delta_Days
Lines 158-164 $template->param( Link Here
158
    reservecount => $reservcount,
157
    reservecount => $reservcount,
159
    overloop    => \@overloop,
158
    overloop    => \@overloop,
160
    overcount   => $overcount,
159
    overcount   => $overcount,
161
    show_date   => format_date(C4::Dates->today('iso')),
160
    show_date   => output_pref({ dt => dt_from_string, dateonly => 1 }),
162
    ReservesMaxPickUpDelay => C4::Context->preference('ReservesMaxPickUpDelay')
161
    ReservesMaxPickUpDelay => C4::Context->preference('ReservesMaxPickUpDelay')
163
);
162
);
164
163
165
- 

Return to bug 13813