Fixed a scoping problem.

This commit is contained in:
JT Smith 2002-08-12 01:42:36 +00:00
parent 9060b50b4d
commit 45105e24fe

View file

@ -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();