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 |
- |
|
|