mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-29 19:33:54 +01:00
hack to get the planner working again for groups, still not perfect, I need to finish the rewrite ;-)
This commit is contained in:
parent
2b1c2a359c
commit
a2e21a1a50
@ -2194,6 +2194,7 @@
|
|||||||
{
|
{
|
||||||
// generate duplicate free list of events within observed interval
|
// generate duplicate free list of events within observed interval
|
||||||
//
|
//
|
||||||
|
/*
|
||||||
$this->bo->store_to_cache(
|
$this->bo->store_to_cache(
|
||||||
Array(
|
Array(
|
||||||
'syear' => $this->bo->year,
|
'syear' => $this->bo->year,
|
||||||
@ -2205,7 +2206,24 @@
|
|||||||
)
|
)
|
||||||
);
|
);
|
||||||
$this->bo->remove_doubles_in_cache($this->planner_firstday,$this->planner_lastday);
|
$this->bo->remove_doubles_in_cache($this->planner_firstday,$this->planner_lastday);
|
||||||
|
*/
|
||||||
|
// hack to get the planner working again
|
||||||
|
$this->bo->cached_events = $GLOBALS['uical']->bo->search(array(
|
||||||
|
'start' => array(
|
||||||
|
'year' => $GLOBALS['uical']->year,
|
||||||
|
'month' => $GLOBALS['uical']->month,
|
||||||
|
'day' => 1,
|
||||||
|
),
|
||||||
|
'end' => array(
|
||||||
|
'year' => $GLOBALS['uical']->year,
|
||||||
|
'month' => 1+$GLOBALS['uical']->month,
|
||||||
|
'day' => 0,
|
||||||
|
),
|
||||||
|
'cat_id' => $GLOBALS['uical']->cat_id,
|
||||||
|
'users' => $GLOBALS['uical']->is_group ? $GLOBALS['uical']->g_owner : explode(',',$GLOBALS['uical']->owner),
|
||||||
|
'filter' => $GLOBALS['uical']->filter,
|
||||||
|
'daywise' => True,
|
||||||
|
));
|
||||||
// process all events within observed interval
|
// process all events within observed interval
|
||||||
//
|
//
|
||||||
for($v=$this->planner_firstday;$v<=$this->planner_lastday;$v++)
|
for($v=$this->planner_firstday;$v<=$this->planner_lastday;$v++)
|
||||||
|
Loading…
Reference in New Issue
Block a user