diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2016-02-18 16:44:27 +0100 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2016-02-18 16:44:27 +0100 |
commit | f9f66a996eb178de4cabdeb2c65ada5558c561ed (patch) | |
tree | 215d5e77194919d1ec7bb5fd54a3dbcee3b64f4b | |
parent | 22541b73c5e0922fcd1c33229a056f6c11ddcbe4 (diff) | |
parent | 04b5956fc8027f2674d3a5cf4b42cb84cf0713ae (diff) | |
download | nextcloud-server-f9f66a996eb178de4cabdeb2c65ada5558c561ed.tar.gz nextcloud-server-f9f66a996eb178de4cabdeb2c65ada5558c561ed.zip |
Merge pull request #22496 from owncloud/jenkins-22355
Fix on shared groups assignment.
-rw-r--r-- | core/ajax/share.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/ajax/share.php b/core/ajax/share.php index 987b637cc97..93a7e911c42 100644 --- a/core/ajax/share.php +++ b/core/ajax/share.php @@ -254,7 +254,7 @@ if (isset($_POST['action']) && isset($_POST['itemType']) && isset($_POST['itemSo if (isset($_GET['itemShares'][OCP\Share::SHARE_TYPE_GROUP]) && is_array($_GET['itemShares'][OCP\Share::SHARE_TYPE_GROUP])) { - $sharedGroups = isset($_GET['itemShares'][OCP\Share::SHARE_TYPE_GROUP]); + $sharedGroups = $_GET['itemShares'][OCP\Share::SHARE_TYPE_GROUP]; } } |