diff options
author | Aleksander Machniak <machniak@kolabsys.com> | 2013-06-24 10:50:31 (GMT) |
---|---|---|
committer | Aleksander Machniak <machniak@kolabsys.com> | 2013-06-24 10:50:31 (GMT) |
commit | dc46469af806dba5210b64696d2a715371b9c766 (patch) | |
tree | da8cf3b1d8055e64db3cc5e9f6ddf8c9bfe59954 /plugins | |
parent | f035de27021e0ae81c21e5311c67a681d6b80db1 (diff) | |
download | roundcubemail-plugins-kolab-dc46469af806dba5210b64696d2a715371b9c766.tar.gz |
Revert "Fix syntax error"
This reverts commit 84439e3acf414cf1903cc112cab6767eaec4761b.
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/libkolab/lib/kolab_format_xcal.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/libkolab/lib/kolab_format_xcal.php b/plugins/libkolab/lib/kolab_format_xcal.php index 4983e99..868316c 100644 --- a/plugins/libkolab/lib/kolab_format_xcal.php +++ b/plugins/libkolab/lib/kolab_format_xcal.php @@ -246,7 +246,7 @@ abstract class kolab_format_xcal extends kolab_format $vurls = new vectorurl; foreach ((array)$object['url'] as $url) { - $vurls->push(new Url(strval($url))); + $vurls->push(new Url(strval($url)); } $this->obj->setUrls($vurls); |