diff options
author | Robin Appelman <icewind1991@gmail.com> | 2011-04-16 10:17:40 +0200 |
---|---|---|
committer | Robin Appelman <icewind1991@gmail.com> | 2011-04-16 10:18:35 +0200 |
commit | 26841884af8ca6b1c02ca047b7ffe35900701754 (patch) | |
tree | 226798b8c4afb9d4bb1bf8c30cf0124aae038ffd /lib/app.php | |
parent | e42dbbf7f3c98f55d00339e9ce2589890a6e55ba (diff) | |
download | nextcloud-server-26841884af8ca6b1c02ca047b7ffe35900701754.tar.gz nextcloud-server-26841884af8ca6b1c02ca047b7ffe35900701754.zip |
move OC_DB to it's own file
Diffstat (limited to 'lib/app.php')
-rw-r--r-- | lib/app.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/app.php b/lib/app.php index f9101ba4052..cbcb1f7b8d3 100644 --- a/lib/app.php +++ b/lib/app.php @@ -51,7 +51,7 @@ class OC_APP{ // Our very own core apps are hardcoded foreach( array( "admin", "files", "log", "settings" ) as $app ){ - oc_require( "$app/appinfo/app.php" ); + require( "$app/appinfo/app.php" ); } // The rest comes here |