Merge pull request #4877 from nextcloud/oc-group-is-gone

Remove OC_Group call
This commit is contained in:
Morris Jobke 2017-05-15 09:51:42 -05:00 committed by GitHub
commit c995bcd557
1 changed files with 1 additions and 1 deletions

View File

@ -812,7 +812,7 @@ class Share extends Constants {
\OCP\Util::writeLog('OCP\Share', sprintf($message, $itemSourceName, $shareWith), \OCP\Util::DEBUG);
throw new \Exception($message_t);
}
if ($shareWithinGroupOnly && !\OC_Group::inGroup($uidOwner, $shareWith)) {
if ($shareWithinGroupOnly) {
$group = \OC::$server->getGroupManager()->get($shareWith);
$user = \OC::$server->getUserManager()->get($uidOwner);
if (!$group || !$user || !$group->inGroup($user)) {