From: Michael J. Rubinsky Date: Fri, 22 Jan 2010 23:33:08 +0000 (-0500) Subject: [kronolith] always cast Horde_Urls to string when it will be serialized X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=9db31c57a0ccae9a4236dfb156a3ec34f9b3a2ac;p=horde.git [kronolith] always cast Horde_Urls to string when it will be serialized --- diff --git a/kronolith/lib/Kronolith.php b/kronolith/lib/Kronolith.php index b14c1727a..2e450da78 100644 --- a/kronolith/lib/Kronolith.php +++ b/kronolith/lib/Kronolith.php @@ -180,7 +180,7 @@ class Kronolith /* Variables used in core javascript files. */ $code['conf'] = array( - 'URI_AJAX' => Horde::getServiceLink('ajax', 'kronolith'), + 'URI_AJAX' => (string)Horde::getServiceLink('ajax', 'kronolith'), 'URI_IMG' => $registry->getImageDir() . '/', 'URI_SNOOZE' => (string)Horde::url($registry->get('webroot', 'horde') . '/services/snooze.php', true, -1), 'SESSION_ID' => defined('SID') ? SID : '',