"Fix for not working birthdays in xmlrpc as reported on the users-list"

This commit is contained in:
Ralf Becker 2007-05-20 15:14:39 +00:00
parent 891906d72f
commit d683c2c7e1

View File

@ -193,9 +193,11 @@ class boaddressbook
$data = array_diff($data,array('',null));
// translate birthday to a iso8601 date
if(isset($data['bday']))
if(isset($data['bday']) && $data['bday'])
{
$y = $m = $d = null;
list($y,$m,$d) = explode('-',$data['bday']);
if (is_null($d)) list($m,$d,$y) = explode('/',$data['bday']);
$data['bday'] = $GLOBALS['server']->date2iso8601(array('year'=>$y,'month'=>$m,'mday'=>$d));
}
// translate timestamps