From 45105e24fe1298ae3d46f3ca893ba3ed32d47c3f Mon Sep 17 00:00:00 2001 From: JT Smith Date: Mon, 12 Aug 2002 01:42:36 +0000 Subject: [PATCH] Fixed a scoping problem. --- lib/HTML/CalendarMonthSimple.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/HTML/CalendarMonthSimple.pm b/lib/HTML/CalendarMonthSimple.pm index f87145306..7ba8c3acd 100644 --- a/lib/HTML/CalendarMonthSimple.pm +++ b/lib/HTML/CalendarMonthSimple.pm @@ -83,7 +83,7 @@ sub as_HTML { my $tablewidth = $self->width(); $tablewidth =~ m/^(\d+)(\%?)$/; my $cellwidth = (int($1/7))||'14'; if ($2) { $cellwidth .= '%'; } my $header = $self->header(); - my $mondayisfirstday = $self->mondayisfirstday(); + $mondayisfirstday = $self->mondayisfirstday(); my $cellalignment = $self->cellalignment(); my $vcellalignment = $self->vcellalignment(); my $contentfontsize = $self->contentfontsize();