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

(-)a/Koha/Calendar.pm (-2 / +1 lines)
Lines 45-51 sub _init { Link Here
45
    $repeat_sth->execute( $branch, 1 );
45
    $repeat_sth->execute( $branch, 1 );
46
    $self->{day_month_closed_days} = {};
46
    $self->{day_month_closed_days} = {};
47
    while ( my $tuple = $repeat_sth->fetchrow_hashref ) {
47
    while ( my $tuple = $repeat_sth->fetchrow_hashref ) {
48
        $self->{day_month_closed_days}->{ $tuple->{day} }->{ $tuple->{month} } =
48
        $self->{day_month_closed_days}->{ $tuple->{month} }->{ $tuple->{day} } =
49
          1;
49
          1;
50
    }
50
    }
51
    my $special = $dbh->prepare(
51
    my $special = $dbh->prepare(
52
- 

Return to bug 8110