"using renamed addressbook_bo"

This commit is contained in:
Ralf Becker 2008-05-10 20:06:39 +00:00
parent 467313e5c5
commit 974faa7483

View File

@ -189,6 +189,7 @@
switch($icalFieldName) switch($icalFieldName)
{ {
case 'ATTENDEE': case 'ATTENDEE':
//if (count($event['participants']) == 1 && isset($event['participants'][$this->user])) break;
foreach((array)$event['participants'] as $uid => $status) foreach((array)$event['participants'] as $uid => $status)
{ {
if (!($info = $this->resource_info($uid))) continue; if (!($info = $this->resource_info($uid))) continue;
@ -245,8 +246,8 @@
case 'DTEND': case 'DTEND':
if(date('H:i:s',$event['end']) == '23:59:59') $event['end']++; if(date('H:i:s',$event['end']) == '23:59:59') $event['end']++;
if(date('H:i:s',$event['end']) == '23:59:00') $event['end']+=60; // needed by old eGW whole-day events if(date('H:i:s',$event['end']) == '23:59:00') $event['end']+=60; // needed by old eGW whole-day events
$attributes[$icalFieldName] = $event['end']; $attributes[$icalFieldName] = $event['end'];
break; break;
case 'RRULE': case 'RRULE':
if ($event['recur_type'] == MCAL_RECUR_NONE) break; // no recuring event if ($event['recur_type'] == MCAL_RECUR_NONE) break; // no recuring event
@ -790,7 +791,7 @@
{ {
// we use the account we found // we use the account we found
} }
elseif ((list($data) = ExecMethod2('addressbook.bocontacts.search',array( elseif ((list($data) = ExecMethod2('addressbook.addressbook_bo.search',array(
'email' => $email, 'email' => $email,
'email_home' => $email, 'email_home' => $email,
),true,'','','',false,'OR'))) ),true,'','','',false,'OR')))