[ 1288653 ] Events calendar again - moving forth/back does not work
This commit is contained in:
parent
c9a3103cd6
commit
9edcb6e0a9
2 changed files with 15 additions and 1 deletions
|
|
@ -1,4 +1,5 @@
|
||||||
6.7.7
|
6.7.7
|
||||||
|
- fix [ 1288653 ] Events calendar again - moving forth/back does not work
|
||||||
- fix [ 1324230 ] 6.7.6 - Template, Rich Text Editor options not showing
|
- fix [ 1324230 ] 6.7.6 - Template, Rich Text Editor options not showing
|
||||||
- fix [ 1276593 ] 6.7.2 Product Images don't upload
|
- fix [ 1276593 ] 6.7.2 Product Images don't upload
|
||||||
- fix [ 1324128 ] Help: List of Available Macros not working
|
- fix [ 1324128 ] Help: List of Available Macros not working
|
||||||
|
|
|
||||||
|
|
@ -225,7 +225,7 @@ sub view {
|
||||||
} elsif ($endMonth eq "current") {
|
} elsif ($endMonth eq "current") {
|
||||||
$maxDate = WebGUI::DateTime::addToDate($minDate,0,1,0);
|
$maxDate = WebGUI::DateTime::addToDate($minDate,0,1,0);
|
||||||
}
|
}
|
||||||
|
WebGUI::ErrorHandler::warn("calMonthStart:".$calMonthStart." calMonthEnd:".$calMonthEnd);
|
||||||
my @now = WebGUI::DateTime::epochToArray(WebGUI::DateTime::time());
|
my @now = WebGUI::DateTime::epochToArray(WebGUI::DateTime::time());
|
||||||
my $calHasEvent = 0;
|
my $calHasEvent = 0;
|
||||||
#monthcount minus i is the number of months remaining to be processed.
|
#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;
|
1;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue