admin/inc/class.admin_statistics.inc.php 1 location
|
@@ 238-241 (lines=4) @@
|
| 235 |
|
{ |
| 236 |
|
$users[] = $uid; |
| 237 |
|
} |
| 238 |
|
elseif (($members = $GLOBALS['egw']->accounts->members($uid,true))) |
| 239 |
|
{ |
| 240 |
|
$users = array_merge($users,$members); |
| 241 |
|
} |
| 242 |
|
} |
| 243 |
|
$users = array_unique($users); |
| 244 |
|
} |
calendar/inc/class.calendar_boupdate.inc.php 1 location
|
@@ 317-320 (lines=4) @@
|
| 314 |
|
calendar_so::split_status($status,$q,$r); |
| 315 |
|
if ($status[0] == 'R') continue; // ignore rejected participants |
| 316 |
|
|
| 317 |
|
if ($uid < 0) // group, check it's members too |
| 318 |
|
{ |
| 319 |
|
$users = array_unique(array_merge($users, (array)$GLOBALS['egw']->accounts->members($uid,true))); |
| 320 |
|
} |
| 321 |
|
$users[] = $uid; |
| 322 |
|
if (in_array($uid[0],$types_with_quantity)) |
| 323 |
|
{ |
calendar/inc/class.calendar_so.inc.php 1 location
|
@@ 2031-2034 (lines=4) @@
|
| 2028 |
|
),__LINE__,__FILE__,'calendar'); |
| 2029 |
|
} |
| 2030 |
|
// for new or changed group-invitations, remove previously deleted members, so they show up again |
| 2031 |
|
if ($uid < 0) |
| 2032 |
|
{ |
| 2033 |
|
$delete_deleted = array_merge($delete_deleted, $GLOBALS['egw']->accounts->members($uid, true)); |
| 2034 |
|
} |
| 2035 |
|
} |
| 2036 |
|
if ($delete_deleted) |
| 2037 |
|
{ |