From: Michael J. Rubinsky Date: Sun, 14 Nov 2010 21:07:18 +0000 (-0500) Subject: Always send the event.l value X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=4bd8fb69c1c65c3983eeb12f842a0836c0ff23d5;p=horde.git Always send the event.l value --- diff --git a/kronolith/lib/Event.php b/kronolith/lib/Event.php index 278fde657..92bc6bf2c 100644 --- a/kronolith/lib/Event.php +++ b/kronolith/lib/Event.php @@ -1689,6 +1689,7 @@ abstract class Kronolith_Event $json->al = is_null($allDay) ? $this->isAllDay() : $allDay; $json->pe = $this->hasPermission(Horde_Perms::EDIT); $json->pd = $this->hasPermission(Horde_Perms::DELETE); + $json->l = $this->location; if ($this->icon) { $json->ic = $this->icon; } @@ -1720,7 +1721,6 @@ abstract class Kronolith_Event $json->id = $this->id; $json->ty = $this->calendarType; $json->d = $this->description; - $json->l = $this->location; $json->u = $this->url; $json->sd = $this->start->strftime('%x'); $json->st = $this->start->format($time_format);