diff options
author | Vincent Petry <pvince81@owncloud.com> | 2014-09-09 17:18:24 +0200 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2014-09-09 18:04:00 +0200 |
commit | 39f5580cdf154256a7586fa57c8e7f094a9721a9 (patch) | |
tree | ec01dc44bb137adc5b016f4a9391b54ef58dd686 /settings/ajax | |
parent | 4a27f4b8b55ef2f388a9998b74b8d1b8ed337bb6 (diff) | |
download | nextcloud-server-39f5580cdf154256a7586fa57c8e7f094a9721a9.tar.gz nextcloud-server-39f5580cdf154256a7586fa57c8e7f094a9721a9.zip |
Remove excludegroup.php
The ajax call is now using ajax/appconfig.php instead
Diffstat (limited to 'settings/ajax')
-rw-r--r-- | settings/ajax/excludegroups.php | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/settings/ajax/excludegroups.php b/settings/ajax/excludegroups.php deleted file mode 100644 index c3488c5bae7..00000000000 --- a/settings/ajax/excludegroups.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php -OC_JSON::checkAdminUser(); -OCP\JSON::callCheck(); - -$selectedGroups = isset($_POST["selectedGroups"]) ? json_decode($_POST["selectedGroups"]) : array(); -$changedGroup = isset($_POST["changedGroup"]) ? $_POST["changedGroup"] : ''; - -if ($changedGroup !== '') { - if(($key = array_search($changedGroup, $selectedGroups)) !== false) { - unset($selectedGroups[$key]); - } else { - $selectedGroups[] = $changedGroup; - } -} else { - \OCP\Util::writeLog('core', 'Can not update list of excluded groups from sharing, parameter missing', \OCP\Util::WARN); -} - -\OC_Appconfig::setValue('core', 'shareapi_exclude_groups_list', implode(',', $selectedGroups)); |