Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin Appelman <icewind1991@gmail.com>2011-04-16 12:12:53 +0400
committerRobin Appelman <icewind1991@gmail.com>2011-04-16 12:12:53 +0400
commit232654cb606af856d24c4b01353f18ac4a48e9bc (patch)
tree6b75128d02cc082e8a8bbcc26cfd921391562e17 /index.php
parent3d89b2caa41bc99f48b8377c87e9c653f467631d (diff)
get rid of the oc_require and friends
Diffstat (limited to 'index.php')
-rw-r--r--index.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/index.php b/index.php
index 23aa30dcb4e..62a515fa20f 100644
--- a/index.php
+++ b/index.php
@@ -22,8 +22,8 @@
*/
require_once( 'lib/base.php' );
-oc_require_once( 'appconfig.php' );
-oc_require_once( 'template.php' );
+require_once( 'appconfig.php' );
+require_once( 'template.php' );
if( OC_USER::isLoggedIn()){
if( $_GET["logout"] ){
OC_USER::logout();