mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-06-24 03:41:53 +02:00
"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.
|
// PARTSTAT={NEEDS-ACTION|ACCEPTED|DECLINED|TENTATIVE|DELEGATED|COMPLETED|IN-PROGRESS} everything from delegated is NOT used by eGW atm.
|
||||||
$status = $this->status_egw2ical[$status];
|
$status = $this->status_egw2ical[$status];
|
||||||
// CUTYPE={INDIVIDUAL|GROUP|RESOURCE|ROOM|UNKNOWN}
|
// 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':
|
case 'g':
|
||||||
$cutype = 'GROUP';
|
$cutype = 'GROUP';
|
||||||
|
Loading…
x
Reference in New Issue
Block a user