phpGroupWare - Patches: patch #567, basic iCal/rfc2445 support for...
You are not allowed to post comments on this tracker with your current authentication level.
patch #567: basic iCal/rfc2445 support for *sending* event updates
Submitter: | Invalid User ID <#8841> | ||
Submitted: | Mon 14 Oct 2002 02:12:24 PM UTC | ||
Category: | calendar | Priority: | 5 - Normal |
Item Group: | None | Status: | None |
Privacy: | Public | Assigned to: | skeeter |
Open/Closed: | Open |
Thu 09 Jan 2003 07:30:11 PM UTC, comment #4: |
Invalid User ID <#12849> |
Sat 23 Nov 2002 08:58:52 AM UTC, comment #3: please see https://savannah.gnu.org/bugs/?func=detailbug&bug_id=1753&group_id=509
|
Dave Hall <skwashd>![]() |
Mon 14 Oct 2002 02:25:25 PM UTC, comment #2: TODO:
|
Invalid User ID <#8841> |
Mon 14 Oct 2002 02:23:03 PM UTC, comment #1:
- used a hotfix for constants in function switch_partstat() were not working
|
Invalid User ID <#8841> |
Mon 14 Oct 2002 02:12:24 PM UTC, original submission:
preferences -> "Event mail format" |
Invalid User ID <#8841> |
No files currently attached
Depends on the following items: None found
Items that depend on this one: None found
There are 0 votes so far. Votes easily highlight which items people would like to see resolved in priority, independently of the priority of the item set by tracker managers.
Follows 1 latest change.
Date | Changed by | Updated Field | Previous Value | => | Replaced by |
---|---|---|---|---|---|
2002-11-23 | skwashd | Assigned to | None | ![]() |
NA |
The time zone offset is not added to the DSTART, DEND and LAST-MODIFIED fields in the I-cal message. Users in different timezones recieve I-cal notices with wrong meeting times.
Lines 232-233 of the patch change the line
- $dtstart_mktime = $so_event->maketime($event['start']) - $GLOBALS['phpgw']->datetime->tz_offset;
to
+ $dtstart_mktime = $so_event->maketime($event['start']);
Reverting back to the original line seems to resolve this issue for DSTART.
It is also neccessary to revert back to the original lines for $dend_mktime (lines 235-236) and $mod_mktime (lines 238-239).