From 82a31168b7992db45c239c110f50197c600d7f17 Mon Sep 17 00:00:00 2001 From: "Michael J. Rubinsky" Date: Fri, 9 Jul 2010 12:20:47 -0400 Subject: [PATCH] ADD is only used when adding new instances to an existing recurring event series. As per RFC 2446, REQUEST should be used when modifying an existing event. We currently don't support adding instances to the existing recurring event series via iTip without sending the entire event series again. Bug: 9131 Reported By: patrick.abiven@apitech.fr --- kronolith/lib/Kronolith.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kronolith/lib/Kronolith.php b/kronolith/lib/Kronolith.php index 12acdf31b..bcc6f1788 100644 --- a/kronolith/lib/Kronolith.php +++ b/kronolith/lib/Kronolith.php @@ -2211,7 +2211,7 @@ class Kronolith $view->header = sprintf(_("%s wishes to make you aware of \"%s\"."), $ident->getName(), $event->getTitle()); } else { /* Update. */ - $method = 'ADD'; + $method = 'REQUEST'; $filename = 'event-update.ics'; $view->subject = sprintf(_("Updated: %s."), $event->getTitle()); $view->header = sprintf(_("%s wants to notify you about changes of \"%s\"."), $ident->getName(), $event->getTitle()); -- 2.11.0