From 47eb79d678c1c20ce7195590e6e36203eec5d512 Mon Sep 17 00:00:00 2001 From: Colin Campbell Date: Tue, 14 Aug 2012 15:38:05 +0100 Subject: [PATCH] Bug 8418: load repeating holidays hash correctly The repeating holidays structure was being loaded in a different order to how it was tested --- Koha/Calendar.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Koha/Calendar.pm b/Koha/Calendar.pm index 298cdb2..7214f39 100644 --- a/Koha/Calendar.pm +++ b/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( -- 1.7.12.rc2.18.g61b472e