[Pkg-owncloud-commits] [php-sabre-vobject] 130/341: UTC offset has not `:` with xCal.
David Prévot
taffit at moszumanska.debian.org
Tue Aug 11 13:35:41 UTC 2015
This is an automated email from the git hooks/post-receive script.
taffit pushed a commit to branch master
in repository php-sabre-vobject.
commit 72f20fa28c7b2f5513f6ede0b1d491e6f1e21af9
Author: Ivan Enderlin <ivan.enderlin at hoa-project.net>
Date: Wed Jan 14 17:09:49 2015 +0100
UTC offset has not `:` with xCal.
---
lib/Property/UtcOffset.php | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
diff --git a/lib/Property/UtcOffset.php b/lib/Property/UtcOffset.php
index c49510b..e08e595 100644
--- a/lib/Property/UtcOffset.php
+++ b/lib/Property/UtcOffset.php
@@ -34,4 +34,24 @@ class UtcOffset extends Text {
return "UTC-OFFSET";
}
+
+ /**
+ * Sets the XML value, as it would appear in a xCard or xCal object.
+ *
+ * The value must always be an array.
+ *
+ * @param array $value
+ * @return void
+ */
+ function setXmlValue(array $value) {
+
+ $value = array_map(
+ function($value) {
+ return str_replace(':', '', $value);
+ },
+ $value
+ );
+ parent::setXmlValue($value);
+
+ }
}
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-owncloud/php-sabre-vobject.git
More information about the Pkg-owncloud-commits
mailing list