diff options
Diffstat (limited to 'files')
-rw-r--r-- | files/admin.php | 1 | ||||
-rw-r--r-- | files/ajax/list.php | 1 | ||||
-rw-r--r-- | files/download.php | 1 | ||||
-rw-r--r-- | files/index.php | 1 | ||||
-rw-r--r-- | files/settings.php | 1 | ||||
-rw-r--r-- | files/webdav.php | 5 |
6 files changed, 0 insertions, 10 deletions
diff --git a/files/admin.php b/files/admin.php index 5c9923aff86..c0a41335f5e 100644 --- a/files/admin.php +++ b/files/admin.php @@ -24,7 +24,6 @@ // Init owncloud require_once('../lib/base.php'); -require( 'template.php' ); // Check if we are a user diff --git a/files/ajax/list.php b/files/ajax/list.php index ef43e72fcae..26462eb5ab9 100644 --- a/files/ajax/list.php +++ b/files/ajax/list.php @@ -2,7 +2,6 @@ // Init owncloud require_once('../../lib/base.php'); -require_once('../../lib/template.php'); // We send json data header( "Content-Type: application/jsonrequest" ); diff --git a/files/download.php b/files/download.php index f7fbcd0f857..ab3dee51348 100644 --- a/files/download.php +++ b/files/download.php @@ -23,7 +23,6 @@ // Init owncloud require_once('../lib/base.php'); -require( 'template.php' ); // Check if we are a user if( !OC_USER::isLoggedIn()){ diff --git a/files/index.php b/files/index.php index 550f23541a0..4f40e70393b 100644 --- a/files/index.php +++ b/files/index.php @@ -24,7 +24,6 @@ // Init owncloud require_once('../lib/base.php'); -require( 'template.php' ); // Check if we are a user if( !OC_USER::isLoggedIn()){ diff --git a/files/settings.php b/files/settings.php index 23aed4d1b86..447a38b1815 100644 --- a/files/settings.php +++ b/files/settings.php @@ -24,7 +24,6 @@ // Init owncloud require_once('../lib/base.php'); -require( 'template.php' ); // Check if we are a user if( !OC_USER::isLoggedIn()){ diff --git a/files/webdav.php b/files/webdav.php index 7dce0b48197..a59dee70c2e 100644 --- a/files/webdav.php +++ b/files/webdav.php @@ -28,11 +28,6 @@ $RUNTIME_NOSETUPFS = true; require_once('../lib/base.php'); require_once('Sabre/autoload.php'); -require_once('Connector/Sabre/auth.php'); -require_once('Connector/Sabre/node.php'); -require_once('Connector/Sabre/file.php'); -require_once('Connector/Sabre/directory.php'); -require_once('Connector/Sabre/locks.php'); // Create ownCloud Dir $publicDir = new OC_Connector_Sabre_Directory(''); |