diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2014-02-06 09:50:11 +0100 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2014-02-06 09:50:11 +0100 |
commit | 21207c6a73bbaf43c6afaceda51690e77fad06f0 (patch) | |
tree | 6be52a837c1ef2c4bb19a4252de6f1a3fc46bec6 | |
parent | afbe50d09c7d9e5cbed2a09bc915ba4eaa8ced27 (diff) | |
download | nextcloud-server-21207c6a73bbaf43c6afaceda51690e77fad06f0.tar.gz nextcloud-server-21207c6a73bbaf43c6afaceda51690e77fad06f0.zip |
remove superfluous $RUNTIME_APPTYPES
-rw-r--r-- | apps/files/ajax/download.php | 6 | ||||
-rw-r--r-- | apps/files/ajax/getstoragestats.php | 3 | ||||
-rw-r--r-- | apps/files/ajax/list.php | 6 | ||||
-rw-r--r-- | apps/files/ajax/rawlist.php | 3 | ||||
-rw-r--r-- | apps/files_trashbin/ajax/list.php | 6 |
5 files changed, 0 insertions, 24 deletions
diff --git a/apps/files/ajax/download.php b/apps/files/ajax/download.php index 6a34cbe4ef1..58037cb0c87 100644 --- a/apps/files/ajax/download.php +++ b/apps/files/ajax/download.php @@ -21,12 +21,6 @@ * */ -// only need filesystem apps -$RUNTIME_APPTYPES=array('filesystem'); - -// Init owncloud - - // Check if we are a user OCP\User::checkLoggedIn(); diff --git a/apps/files/ajax/getstoragestats.php b/apps/files/ajax/getstoragestats.php index dd7c7dc5571..69a26ed8eb3 100644 --- a/apps/files/ajax/getstoragestats.php +++ b/apps/files/ajax/getstoragestats.php @@ -1,8 +1,5 @@ <?php -// only need filesystem apps -$RUNTIME_APPTYPES = array('filesystem'); - $dir = '/'; if (isset($_GET['dir'])) { diff --git a/apps/files/ajax/list.php b/apps/files/ajax/list.php index 0be38c3b96f..3617cd426cc 100644 --- a/apps/files/ajax/list.php +++ b/apps/files/ajax/list.php @@ -1,11 +1,5 @@ <?php -// only need filesystem apps -$RUNTIME_APPTYPES=array('filesystem'); - -// Init owncloud - - OCP\JSON::checkLoggedIn(); // Load the files diff --git a/apps/files/ajax/rawlist.php b/apps/files/ajax/rawlist.php index 40da32b223a..fb34e518fa2 100644 --- a/apps/files/ajax/rawlist.php +++ b/apps/files/ajax/rawlist.php @@ -1,8 +1,5 @@ <?php -// only need filesystem apps -$RUNTIME_APPTYPES=array('filesystem'); - OCP\JSON::checkLoggedIn(); // Load the files diff --git a/apps/files_trashbin/ajax/list.php b/apps/files_trashbin/ajax/list.php index c9dc13b7840..1ade4c7933d 100644 --- a/apps/files_trashbin/ajax/list.php +++ b/apps/files_trashbin/ajax/list.php @@ -1,11 +1,5 @@ <?php -// only need filesystem apps -$RUNTIME_APPTYPES=array('filesystem'); - -// Init owncloud - - OCP\JSON::checkLoggedIn(); // Load the files |