mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 16:44:20 +01:00
Fix for missing event & group by month
This commit is contained in:
parent
47643f06a6
commit
abc9252069
@ -1813,8 +1813,10 @@ var et2_calendar_planner = (function(){ "use strict"; return et2_calendar_view.e
|
||||
{
|
||||
var event = egw.dataGetUIDdata('calendar::'+data[i]);
|
||||
|
||||
if(!event) continue;
|
||||
|
||||
// Try to determine rows interested
|
||||
if(event && event.data && this.grouper)
|
||||
if(event.data && this.grouper)
|
||||
{
|
||||
this.grouper.group.call(this, labels, events, event.data);
|
||||
}
|
||||
@ -1829,7 +1831,8 @@ var et2_calendar_planner = (function(){ "use strict"; return et2_calendar_view.e
|
||||
}
|
||||
if(this.cache[id].indexOf(event.data.row_id) === -1 && (
|
||||
event.data.participants[id] && this.options.group_by === 'user' ||
|
||||
event.data.category === id && this.options.group_by === 'category'
|
||||
event.data.category === id && this.options.group_by === 'category' ||
|
||||
this.options.group_by === 'month'
|
||||
))
|
||||
{
|
||||
this.cache[id].push(event.data.row_id);
|
||||
|
Loading…
Reference in New Issue
Block a user