* CalDAV: fixed group-invitations got lost (urn:uuid url lost one char with each new import)

This commit is contained in:
Ralf Becker 2011-11-24 14:37:12 +00:00
parent 21989aa249
commit f99e4f276a

View File

@ -464,7 +464,7 @@ class calendar_ical extends calendar_boupdate
{
case 'g':
$cutype = 'GROUP';
$participantURL = 'urn:uuid:'.common::generate_uid('accounts', substr($uid, 1));
$participantURL = 'urn:uuid:'.common::generate_uid('accounts', $uid);
$members = $GLOBALS['egw']->accounts->members($uid, true);
if (!isset($event['participants'][$this->user]) && in_array($this->user, $members))
{
@ -496,7 +496,7 @@ class calendar_ical extends calendar_boupdate
default:
$cutype = 'UNKNOWN';
break;
};
}
// generate urn:uuid, if we have no other participant URL
if (empty($participantURL) && $info && $info['app'])
{