15 lines
382 B
PHP
15 lines
382 B
PHP
|
<?php
|
||
|
/**
|
||
|
* Copyright (c) 2011, Frank Karlitschek <karlitschek@kde.org>
|
||
|
* Copyright (c) 2012, Florian Hülsmann <fh@cbix.de>
|
||
|
* This file is licensed under the Affero General Public License version 3 or later.
|
||
|
* See the COPYING-README file.
|
||
|
*/
|
||
|
|
||
|
OCP\User::checkAdminUser();
|
||
|
OCP\JSON::callCheck();
|
||
|
|
||
|
OCP\Config::setSystemValue( 'somesetting', $_GET['somesetting'] );
|
||
|
|
||
|
echo 'true';
|