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

Erronious continue statement. Fix owncloud/calendar#260

This commit is contained in:
Thomas Tanghus 2013-12-17 15:37:56 +01:00
parent 9a2168aa22
commit 58f6f36fc3

View File

@ -754,7 +754,7 @@ class Contact extends VObject\VCard implements IPIMObject {
try {
$date = new \DateTime($birthday);
} catch(\Exception $e) {
continue;
return;
}
$vevent = \Sabre\VObject\Component::create('VEVENT');
$vevent->add('DTSTART');