aboutsummaryrefslogtreecommitdiffstats
path: root/lib/vobject.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/vobject.php')
-rw-r--r--lib/vobject.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/vobject.php b/lib/vobject.php
index e3479fc6d36..2b1f6534cc4 100644
--- a/lib/vobject.php
+++ b/lib/vobject.php
@@ -41,7 +41,7 @@ class OC_VObject{
*/
public static function parse($data){
try {
- Sabre_VObject_Reader::$elementMap['LAST-MODIFIED'] = 'Sabre_VObject_Element_DateTime';
+ Sabre_VObject_Property::$classMap['LAST-MODIFIED'] = 'Sabre_VObject_Element_DateTime';
$vobject = Sabre_VObject_Reader::read($data);
if ($vobject instanceof Sabre_VObject_Component){
$vobject = new OC_VObject($vobject);