1
0
mirror of https://github.com/owncloudarchive/contacts.git synced 2024-12-01 13:24:10 +01:00

Missed to namespace a class name.

This commit is contained in:
Thomas Tanghus 2012-10-25 23:13:59 +02:00
parent a208a66df2
commit 66b2d0c42a

View File

@ -270,7 +270,7 @@ class App {
} elseif($contact instanceof \OC_VObject) {
$rev = $contact->getAsString('REV');
if ($rev) {
return \DateTime::createFromFormat(DateTime::W3C, $rev);
return \DateTime::createFromFormat(\DateTime::W3C, $rev);
}
}
}