Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2016-02-18 18:44:27 +0300
committerThomas Müller <thomas.mueller@tmit.eu>2016-02-18 18:44:27 +0300
commitf9f66a996eb178de4cabdeb2c65ada5558c561ed (patch)
tree215d5e77194919d1ec7bb5fd54a3dbcee3b64f4b
parent22541b73c5e0922fcd1c33229a056f6c11ddcbe4 (diff)
parent04b5956fc8027f2674d3a5cf4b42cb84cf0713ae (diff)
Merge pull request #22496 from owncloud/jenkins-22355
Fix on shared groups assignment.
-rw-r--r--core/ajax/share.php2
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];
}
}