Skip Menu |

This queue is for tickets about the RTx-Calendar CPAN distribution.

Report information
The Basics
Id: 63469
Status: resolved
Priority: 0/
Queue: RTx-Calendar

People
Owner: Nobody in particular
Requestors: ELACOUR [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Normal
Broken in: 0.07
Fixed in: (no value)



Subject: In MyCalendar portlet, event for last day (today + 3 days) are not displayed
Quick fix: --- src/RTx-Calendar-0.07/html/Elements/MyCalendar 2007-05-17 12:37:24.000000000 +0200 +++ rt/local/plugins/RTx-Calendar/html/Elements/MyCalendar 2010-11-30 17:05:52.000000000 +0100 @@ -69,7 +69,7 @@ # used to display or not a date in Element/CalendarEvent my %DateTypes = map { $_ => 1 } @Dates; -$Query .= RTx::Calendar::DatesClauses(\@Dates, $begin->strftime("%F"), $end->strftime("%F")); +$Query .= RTx::Calendar::DatesClauses(\@Dates, $begin->strftime("%F"), $end->strftime("%F 23:59:59")); # print STDERR $Query, "\n";
Fixed in 0.08 in a slightly different way. Thanks Emmanuel! Shawn