diff options
author | Georg Ehrke <dev@georgswebsite.de> | 2012-04-17 19:31:29 +0200 |
---|---|---|
committer | Georg Ehrke <dev@georgswebsite.de> | 2012-04-17 19:31:29 +0200 |
commit | 69ee0efc0b355c33ec566cffb36c4b0dc429c338 (patch) | |
tree | 50f96da78b34007f47d6de10bdf47f35704d96a8 /apps/media/ajax | |
parent | 12818093007d5bdce5519b5015e2a0748c98e24d (diff) | |
download | nextcloud-server-69ee0efc0b355c33ec566cffb36c4b0dc429c338.tar.gz nextcloud-server-69ee0efc0b355c33ec566cffb36c4b0dc429c338.zip |
remove the require_once lib base from all (or nearly all) files
Diffstat (limited to 'apps/media/ajax')
-rw-r--r-- | apps/media/ajax/api.php | 2 | ||||
-rw-r--r-- | apps/media/ajax/autoupdate.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/apps/media/ajax/api.php b/apps/media/ajax/api.php index 9d9c14deb17..72235bf5db8 100644 --- a/apps/media/ajax/api.php +++ b/apps/media/ajax/api.php @@ -23,7 +23,7 @@ header('Content-type: text/html; charset=UTF-8') ; -require_once('../../../lib/base.php'); + OC_JSON::checkAppEnabled('media'); require_once('../lib_collection.php'); require_once('../lib_scanner.php'); diff --git a/apps/media/ajax/autoupdate.php b/apps/media/ajax/autoupdate.php index a78b5e25dd1..ea7c5006e70 100644 --- a/apps/media/ajax/autoupdate.php +++ b/apps/media/ajax/autoupdate.php @@ -27,7 +27,7 @@ header('Content-type: text/html; charset=UTF-8') ; $RUNTIME_NOAPPS=true; $RUNTIME_NOSETUPFS=true; -require_once('../../../lib/base.php'); + OC_JSON::checkAppEnabled('media'); $autoUpdate=(isset($_GET['autoupdate']) and $_GET['autoupdate']=='true'); |