@@ -, +, @@ holidays for Sunday, New Years Day, and Christmas. because 1-1 means the day and month position do not matter ). --- Koha/Calendar.pm | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) --- a/Koha/Calendar.pm +++ a/Koha/Calendar.pm @@ -45,7 +45,7 @@ sub _init { $repeat_sth->execute( $branch, 1 ); $self->{day_month_closed_days} = {}; while ( my $tuple = $repeat_sth->fetchrow_hashref ) { - $self->{day_month_closed_days}->{ $tuple->{day} }->{ $tuple->{month} } = + $self->{day_month_closed_days}->{ $tuple->{month} }->{ $tuple->{day} } = 1; } my $special = $dbh->prepare( --