diff options
author | Frank Karlitschek <frank@owncloud.org> | 2012-05-02 19:08:37 +0200 |
---|---|---|
committer | Frank Karlitschek <frank@owncloud.org> | 2012-05-02 19:08:37 +0200 |
commit | 4fe90f62f4041d31402cbe198fd0e3edce77ce13 (patch) | |
tree | 2320a5fabe2e5347c04472af1cc95a6eb056369f /apps/remoteStorage | |
parent | eec7c3833c9c1f1e83549474d6ba4b34ce307761 (diff) | |
download | nextcloud-server-4fe90f62f4041d31402cbe198fd0e3edce77ce13.tar.gz nextcloud-server-4fe90f62f4041d31402cbe198fd0e3edce77ce13.zip |
port checkAppEnabled
Diffstat (limited to 'apps/remoteStorage')
-rwxr-xr-x[-rw-r--r--] | apps/remoteStorage/WebDAV.php | 2 | ||||
-rwxr-xr-x[-rw-r--r--] | apps/remoteStorage/ajax/revokeToken.php | 2 | ||||
-rwxr-xr-x | apps/remoteStorage/auth.php | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/apps/remoteStorage/WebDAV.php b/apps/remoteStorage/WebDAV.php index 3522d1ed683..45f6cac3166 100644..100755 --- a/apps/remoteStorage/WebDAV.php +++ b/apps/remoteStorage/WebDAV.php @@ -30,7 +30,7 @@ $RUNTIME_NOSETUPFS = true; -OC_Util::checkAppEnabled('remoteStorage'); +OCP\App::checkAppEnabled('remoteStorage'); require_once('Sabre/autoload.php'); require_once('lib_remoteStorage.php'); require_once('BearerAuth.php'); diff --git a/apps/remoteStorage/ajax/revokeToken.php b/apps/remoteStorage/ajax/revokeToken.php index 376fe29b3e7..235a02107e6 100644..100755 --- a/apps/remoteStorage/ajax/revokeToken.php +++ b/apps/remoteStorage/ajax/revokeToken.php @@ -30,7 +30,7 @@ $RUNTIME_NOSETUPFS = true; -OC_Util::checkAppEnabled('remoteStorage'); +OCP\App::checkAppEnabled('remoteStorage'); require_once('Sabre/autoload.php'); require_once('../lib_remoteStorage.php'); diff --git a/apps/remoteStorage/auth.php b/apps/remoteStorage/auth.php index 682c1e97f6b..a5cbd6aca02 100755 --- a/apps/remoteStorage/auth.php +++ b/apps/remoteStorage/auth.php @@ -30,7 +30,7 @@ $RUNTIME_NOSETUPFS = true; -OC_Util::checkAppEnabled('remoteStorage'); +OCP\App::checkAppEnabled('remoteStorage'); require_once('Sabre/autoload.php'); require_once('lib_remoteStorage.php'); require_once('oauth_ro_auth.php'); |