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

github.com/nextcloud/apps.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBart Visscher <bartv@thisnet.nl>2013-07-19 15:13:06 +0400
committerBart Visscher <bartv@thisnet.nl>2013-07-19 15:13:06 +0400
commitcbf4cb787e78ee37a8f4aef72dea6c6567fdd047 (patch)
treec32c9112184a1225e3ba51f28b8eedae72bad72d /user_oauth
parenta91ad187b4c9d55fa85c4d6ebdbced0bf1068fa6 (diff)
Change user_oauth to use the OCP functions instead of the core ones
Diffstat (limited to 'user_oauth')
-rw-r--r--user_oauth/remote.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/user_oauth/remote.php b/user_oauth/remote.php
index 94b20937a..3cbba7f1c 100644
--- a/user_oauth/remote.php
+++ b/user_oauth/remote.php
@@ -26,7 +26,7 @@
$RUNTIME_APPTYPES=array('filesystem','authentication');
OC_App::loadApps($RUNTIME_APPTYPES);
-$introspectionEndpoint = \OC_Config::getValue( "introspectionEndpoint", "https://frko.surfnetlabs.nl/workshop/php-oauth/introspect.php" );
+$introspectionEndpoint = \OCP\Config::getSystemValue( "introspectionEndpoint", "https://frko.surfnetlabs.nl/workshop/php-oauth/introspect.php" );
require_once 'oauth.php';