mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-23 00:13:35 +01:00
fix for bug #21: Reject entry as part of group, entry still shown (should not)
That's fixed now for the planner, cant reproduce that wrong behavior for the other views
This commit is contained in:
parent
9172cf3fa9
commit
600c807dfd
@ -1357,7 +1357,8 @@ class uiviews extends uical
|
||||
{
|
||||
foreach($event['participants'] as $sort => $status)
|
||||
{
|
||||
if (isset($sort2label[$sort]))
|
||||
// only show if participant has not rejected or user wants to see rejections
|
||||
if (isset($sort2label[$sort]) && ($status != 'R' || $this->bo->cal_prefs['show_rejected']))
|
||||
{
|
||||
$rows[$sort][] =& $events[$key];
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user