diff options
author | Tom Needham <needham.thomas@gmail.com> | 2012-08-03 11:47:05 +0000 |
---|---|---|
committer | Tom Needham <needham.thomas@gmail.com> | 2012-08-03 11:47:05 +0000 |
commit | a7906d813ad342f06d4834c10c1200002f7342d2 (patch) | |
tree | 3febe27bb1e19dfd93916856057f63cb0d699669 /settings | |
parent | 88c6928bade99676ab44dd43519dd40d470515c6 (diff) | |
download | nextcloud-server-a7906d813ad342f06d4834c10c1200002f7342d2.tar.gz nextcloud-server-a7906d813ad342f06d4834c10c1200002f7342d2.zip |
Move OAuth classes into lib/oauth
Diffstat (limited to 'settings')
-rw-r--r-- | settings/oauth.php | 2 |
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': |