Skip to content

Commit

Permalink
Fix not outputting empty properties to CarDAV (Bug #12782).
Browse files Browse the repository at this point in the history
  • Loading branch information
yunosh committed Jun 4, 2014
1 parent 36e8930 commit 6248e91
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion turba/lib/Application.php
Expand Up @@ -772,7 +772,8 @@ public function davGetObject($collection, $object)
} catch (Horde_Dav_Exception $e) {
}

$data = $driver->tovCard($contact, '3.0')->exportvCalendar();
$data = $driver->tovCard($contact, '3.0', null, true)
->exportvCalendar();

return array(
'id' => $id,
Expand Down

0 comments on commit 6248e91

Please sign in to comment.