From 23ddd33152f5f563909005fdb6e40b5d3e6f9321 Mon Sep 17 00:00:00 2001 From: Emmi Takkinen Date: Thu, 19 Mar 2020 09:12:19 +0200 Subject: [PATCH] Bug 4985: Add missing parameters Subroutine edit_holiday was missing parameter. Sponsored-by: Koha-Suomi Oy --- tools/exceptionHolidays.pl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/exceptionHolidays.pl b/tools/exceptionHolidays.pl index 2c1d24f18b..7bde06bdf9 100755 --- a/tools/exceptionHolidays.pl +++ b/tools/exceptionHolidays.pl @@ -52,16 +52,16 @@ if ($datecancelrange_dt){ if($allbranches) { my $libraries = Koha::Libraries->search; while ( my $library = $libraries->next ) { - edit_holiday($showoperation, $library->branchcode, $weekday, $day, $month, $year, $title, $description, $holidaytype); + edit_holiday($showoperation, $library->branchcode, $weekday, $day, $month, $year, $title, $description, $holidaytype, \@holiday_list); } } else { - edit_holiday($showoperation, $branchcode, $weekday, $day, $month, $year, $title, $description, $holidaytype); + edit_holiday($showoperation, $branchcode, $weekday, $day, $month, $year, $title, $description, $holidaytype, \@holiday_list); } print $input->redirect("/cgi-bin/koha/tools/holidays.pl?branch=$originalbranchcode&calendardate=$calendardate"); sub edit_holiday { - ($showoperation, $branchcode, $weekday, $day, $month, $year, $title, $description, $holidaytype) = @_; + ($showoperation, $branchcode, $weekday, $day, $month, $year, $title, $description, $holidaytype, @holiday_list) = @_; my $calendar = C4::Calendar->new(branchcode => $branchcode); if ($showoperation eq 'exception') { -- 2.17.1