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:
authorLukas Reschke <lukas@owncloud.com>2014-08-22 18:01:03 +0400
committerMorris Jobke <hey@morrisjobke.de>2014-08-26 00:15:54 +0400
commitdac8dead074fa58739d7c0b3b0a800f9ae32367a (patch)
treec5fabdbd09345e18c0944bfd6adda1b5d5d3a455 /settings/ajax/setsecurity.php
parent09ab1f16c08838ab0583e88c789c987f8eeb4a46 (diff)
Redirect user after clicking on link
Use DI
Diffstat (limited to 'settings/ajax/setsecurity.php')
-rw-r--r--settings/ajax/setsecurity.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/settings/ajax/setsecurity.php b/settings/ajax/setsecurity.php
index 3cb1d05ee63..f1f737a4943 100644
--- a/settings/ajax/setsecurity.php
+++ b/settings/ajax/setsecurity.php
@@ -9,13 +9,13 @@ OC_Util::checkAdminUser();
OCP\JSON::callCheck();
if(isset($_POST['enforceHTTPS'])) {
- OC_Config::setValue( 'forcessl', filter_var($_POST['enforceHTTPS'], FILTER_VALIDATE_BOOLEAN));
+ \OC::$server->getConfig()->setSystemValue('forcessl', filter_var($_POST['enforceHTTPS'], FILTER_VALIDATE_BOOLEAN));
}
if(isset($_POST['trustedDomain'])) {
- $trustedDomains = OC_Config::getValue('trusted_domains');
+ $trustedDomains = \OC::$server->getConfig()->getSystemValue('trusted_domains');
$trustedDomains[] = $_POST['trustedDomain'];
- OC_Config::setValue('trusted_domains', $trustedDomains);
+ \OC::$server->getConfig()->setSystemValue('trusted_domains', $trustedDomains);
}
echo 'true';