summaryrefslogtreecommitdiffstats
path: root/settings
diff options
context:
space:
mode:
authorTom Needham <needham.thomas@gmail.com>2012-08-03 11:47:05 +0000
committerTom Needham <needham.thomas@gmail.com>2012-08-03 11:47:05 +0000
commita7906d813ad342f06d4834c10c1200002f7342d2 (patch)
tree3febe27bb1e19dfd93916856057f63cb0d699669 /settings
parent88c6928bade99676ab44dd43519dd40d470515c6 (diff)
downloadnextcloud-server-a7906d813ad342f06d4834c10c1200002f7342d2.tar.gz
nextcloud-server-a7906d813ad342f06d4834c10c1200002f7342d2.zip
Move OAuth classes into lib/oauth
Diffstat (limited to 'settings')
-rw-r--r--settings/oauth.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/settings/oauth.php b/settings/oauth.php
index b04c798b1b0..7f30161d852 100644
--- a/settings/oauth.php
+++ b/settings/oauth.php
@@ -9,7 +9,7 @@ require_once('../lib/base.php');
// Logic
$operation = isset($_GET['operation']) ? $_GET['operation'] : '';
-$server = new OC_OAuthServer(new OC_OAuthStore());
+$server = new OC_OAuth_Server(new OC_OAuth_Store());
switch($operation){
case 'register':