mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-23 08:23:12 +01:00
add date parameter to next and last date link, to set correct exception date for recuring events
This commit is contained in:
parent
4b2b17b751
commit
90717af7a7
@ -1312,6 +1312,9 @@ class addressbook_bo extends addressbook_so
|
|||||||
'id' => $event['id'],
|
'id' => $event['id'],
|
||||||
'app' => 'calendar',
|
'app' => 'calendar',
|
||||||
'title' => $bocal->link_title($event),
|
'title' => $bocal->link_title($event),
|
||||||
|
'extra_args' => array(
|
||||||
|
'date' => date('Ymd',$event['start']),
|
||||||
|
),
|
||||||
);
|
);
|
||||||
if ($extra_title)
|
if ($extra_title)
|
||||||
{
|
{
|
||||||
@ -1330,6 +1333,9 @@ class addressbook_bo extends addressbook_so
|
|||||||
'id' => $event['id'],
|
'id' => $event['id'],
|
||||||
'app' => 'calendar',
|
'app' => 'calendar',
|
||||||
'title' => $bocal->link_title($event),
|
'title' => $bocal->link_title($event),
|
||||||
|
'extra_args' => array(
|
||||||
|
'date' => date('Ymd',$event['start']),
|
||||||
|
),
|
||||||
);
|
);
|
||||||
if ($extra_title)
|
if ($extra_title)
|
||||||
{
|
{
|
||||||
@ -1341,7 +1347,6 @@ class addressbook_bo extends addressbook_so
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
//_debug_array($calendars);
|
|
||||||
return $calendars;
|
return $calendars;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user