[ 1288653 ] Events calendar again - moving forth/back does not work

This commit is contained in:
Matthew Wilson 2005-10-17 13:51:38 +00:00
parent c9a3103cd6
commit 9edcb6e0a9
2 changed files with 15 additions and 1 deletions

View file

@ -225,7 +225,7 @@ sub view {
} elsif ($endMonth eq "current") {
$maxDate = WebGUI::DateTime::addToDate($minDate,0,1,0);
}
WebGUI::ErrorHandler::warn("calMonthStart:".$calMonthStart." calMonthEnd:".$calMonthEnd);
my @now = WebGUI::DateTime::epochToArray(WebGUI::DateTime::time());
my $calHasEvent = 0;
#monthcount minus i is the number of months remaining to be processed.
@ -436,5 +436,18 @@ sub view {
#}
#-------------------------------------------------------------------
=head2 www_view ( )
Overwrite www_view method and call the superclass object, passing in a 1 to disable cache
=cut
sub www_view {
my $self = shift;
$self->SUPER::www_view(1);
}
1;