From: Jan Schneider Date: Tue, 19 Jan 2010 18:06:12 +0000 (+0100) Subject: Cast to string. X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=c3570961b45053e55147c5a77b32caff87edef8f;p=horde.git Cast to string. --- diff --git a/kronolith/lib/Event/Sql.php b/kronolith/lib/Event/Sql.php index f444b1338..db7add170 100644 --- a/kronolith/lib/Event/Sql.php +++ b/kronolith/lib/Event/Sql.php @@ -150,7 +150,7 @@ class Kronolith_Event_Sql extends Kronolith_Event $this->_properties['event_title'] = $driver->convertToDriver($this->title); $this->_properties['event_description'] = $driver->convertToDriver($this->description); $this->_properties['event_location'] = $driver->convertToDriver($this->location); - $this->_properties['event_url'] = $this->url; + $this->_properties['event_url'] = (string)$this->url; $this->_properties['event_private'] = (int)$this->private; $this->_properties['event_status'] = $this->status; $this->_properties['event_attendees'] = serialize($driver->convertToDriver($this->attendees));