mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-23 00:13:35 +01:00
hopefully the last xmlrpc fix
This commit is contained in:
parent
74fe998db9
commit
373864f6fe
@ -281,7 +281,7 @@
|
||||
if (isset($data['bday']))
|
||||
{
|
||||
$arr = $GLOBALS['server']->iso86012date($data['bday']);
|
||||
$data['bday'] = $y && $m && $d ? sprintf('%d/%02d/%04d',$arr['month'],$arr['mday'],$arr['year']) : '';
|
||||
$data['bday'] = $arr['year'] && $arr['month'] && $arr['mday'] ? sprintf('%d/%02d/%04d',$arr['month'],$arr['mday'],$arr['year']) : '';
|
||||
}
|
||||
if (isset($data['last_mod']))
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user