fixed tooltips for IE

This commit is contained in:
Frank Dillon 2007-01-11 01:15:04 +00:00
parent 6d42a44f26
commit bec299d698

View file

@ -939,7 +939,7 @@ sub view
$var->{"paramType"} = $params->{type}; $var->{"paramType"} = $params->{type};
$var->{"extrasUrl"} = $self->session->url->extras();
##### Process the template ##### Process the template
# If user is only a Visitor and we've gotten this far, update the cache # If user is only a Visitor and we've gotten this far, update the cache
@ -1136,11 +1136,12 @@ sub viewMonth
my $week = int(($adjust + $mday) / 7); my $week = int(($adjust + $mday) / 7);
my $position = ($adjust + $mday) % 7; my $position = ($adjust + $mday) % 7;
push @{$var->{weeks}->[$week]->{days}->[$position]->{events}}, { my $eventRef = {
## Event data ## Event data
(%eventVar), (%eventVar),
(%eventDates), (%eventDates)
}; };
push @{$var->{weeks}->[$week]->{days}->[$position]->{events}}, $eventRef;
} }
} }
@ -1184,7 +1185,6 @@ sub viewMonth
$var->{"monthAbbr"} = $dt->month_abbr; $var->{"monthAbbr"} = $dt->month_abbr;
$var->{"year"} = $dt->year; $var->{"year"} = $dt->year;
# Return the template # Return the template
return $var; return $var;
} }