Use Group methods for searching, fixes #4201
This commit is contained in:
parent
ab1f78eac3
commit
22e1f73d5e
1 changed files with 5 additions and 6 deletions
|
@ -181,10 +181,10 @@ if (isset($_POST['action']) && isset($_POST['itemType']) && isset($_POST['itemSo
|
|||
// }
|
||||
// }
|
||||
// }
|
||||
$groups = OC_Group::getGroups($_GET['search']);
|
||||
if ($sharePolicy == 'groups_only') {
|
||||
$groups = OC_Group::getUserGroups(OC_User::getUser());
|
||||
} else {
|
||||
$groups = OC_Group::getGroups();
|
||||
$usergroups = OC_Group::getUserGroups(OC_User::getUser());
|
||||
$groups = array_intersect($groups, $usergroups);
|
||||
}
|
||||
$count = 0;
|
||||
$users = array();
|
||||
|
@ -219,11 +219,10 @@ if (isset($_POST['action']) && isset($_POST['itemType']) && isset($_POST['itemSo
|
|||
|
||||
foreach ($groups as $group) {
|
||||
if ($count < 15) {
|
||||
if (stripos($group, $_GET['search']) !== false
|
||||
&& (!isset($_GET['itemShares'])
|
||||
if (!isset($_GET['itemShares'])
|
||||
|| !isset($_GET['itemShares'][OCP\Share::SHARE_TYPE_GROUP])
|
||||
|| !is_array($_GET['itemShares'][OCP\Share::SHARE_TYPE_GROUP])
|
||||
|| !in_array($group, $_GET['itemShares'][OCP\Share::SHARE_TYPE_GROUP]))) {
|
||||
|| !in_array($group, $_GET['itemShares'][OCP\Share::SHARE_TYPE_GROUP])) {
|
||||
$shareWith[] = array(
|
||||
'label' => $group.' ('.$l->t('group').')',
|
||||
'value' => array(
|
||||
|
|
Loading…
Reference in a new issue