Skip to content
Snippets Groups Projects
Commit c2bdb5c7 authored by Bart Visscher's avatar Bart Visscher
Browse files

Fix require 3rdpartypath

parent fcf3dbcf
No related branches found
No related tags found
No related merge requests found
......@@ -37,8 +37,8 @@ class OC_OAuth {
*/
private static function init(){
// Include the libraries
require_once(OC::$SERVERROOT.'3rdparty/oauth-php/library/OAuthServer.php');
require_once(OC::$SERVERROOT.'3rdparty/oauth-php/library/OAuthStore.php');
require_once(OC::$THIRDPARTYROOT.'3rdparty/oauth-php/library/OAuthServer.php');
require_once(OC::$THIRDPARTYROOT.'3rdparty/oauth-php/library/OAuthStore.php');
// Create the server object
self::$server = new OAuthServer();
// Initialise the OAuth store
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment