forked from extern/egroupware
"fix for bug #1245: Export ical dont work: Call to undefined function is_nummeric()"
This commit is contained in:
parent
96ed4814ac
commit
c89a55fb10
@ -200,7 +200,7 @@
|
||||
// PARTSTAT={NEEDS-ACTION|ACCEPTED|DECLINED|TENTATIVE|DELEGATED|COMPLETED|IN-PROGRESS} everything from delegated is NOT used by eGW atm.
|
||||
$status = $this->status_egw2ical[$status];
|
||||
// CUTYPE={INDIVIDUAL|GROUP|RESOURCE|ROOM|UNKNOWN}
|
||||
switch (is_nummeric($uid) ? $GLOBALS['egw']->accounts->get_type($uid) : $uid{0})
|
||||
switch (is_numeric($uid) ? $GLOBALS['egw']->accounts->get_type($uid) : $uid{0})
|
||||
{
|
||||
case 'g':
|
||||
$cutype = 'GROUP';
|
||||
|
Loading…
Reference in New Issue
Block a user