From: Michael J. Rubinsky Date: Fri, 9 Jul 2010 16:20:47 +0000 (-0400) Subject: ADD is only used when adding new instances to an existing recurring event series. X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=82a31168b7992db45c239c110f50197c600d7f17;p=horde.git 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 --- 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());