mirror of
https://github.com/nextcloud/server.git
synced 2026-04-20 22:00:39 -04:00
Fix require 3rdpartypath
This commit is contained in:
parent
fcf3dbcfc1
commit
c2bdb5c716
1 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue