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

(-)a/tools/exceptionHolidays.pl (+3 lines)
Lines 14-19 use Koha::DateUtils; Link Here
14
my $input = new CGI;
14
my $input = new CGI;
15
my $dbh = C4::Context->dbh();
15
my $dbh = C4::Context->dbh();
16
16
17
checkauth($input, 0, {tools=> 'edit_calendar'}, 'intranet');
18
19
17
my $branchcode = $input->param('showBranchName');
20
my $branchcode = $input->param('showBranchName');
18
my $weekday = $input->param('showWeekday');
21
my $weekday = $input->param('showWeekday');
19
my $day = $input->param('showDay');
22
my $day = $input->param('showDay');
(-)a/tools/newHolidays.pl (-1 / +2 lines)
Lines 33-38 use Koha::DateUtils; Link Here
33
my $input               = new CGI;
33
my $input               = new CGI;
34
my $dbh                 = C4::Context->dbh();
34
my $dbh                 = C4::Context->dbh();
35
35
36
checkauth($input, 0, {tools=> 'edit_calendar'}, 'intranet');
37
36
our $branchcode          = $input->param('newBranchName');
38
our $branchcode          = $input->param('newBranchName');
37
my $originalbranchcode  = $branchcode;
39
my $originalbranchcode  = $branchcode;
38
our $weekday             = $input->param('newWeekday');
40
our $weekday             = $input->param('newWeekday');
39
- 

Return to bug 24878