summaryrefslogtreecommitdiffstats
path: root/lib/base.php
diff options
context:
space:
mode:
authorBernhard Posselt <nukeawhale@gmail.com>2013-01-17 21:44:40 +0100
committerBernhard Posselt <nukeawhale@gmail.com>2013-01-17 21:44:40 +0100
commit2b95ae1e6d2296ef81259e6762fb3e6662f3bc6c (patch)
tree39ae8e7b18acab6e5e1e71d1885fce49642700bd /lib/base.php
parenta8094abac7ea0b64d5e523192892b2d3b063fba9 (diff)
downloadnextcloud-server-2b95ae1e6d2296ef81259e6762fb3e6662f3bc6c.tar.gz
nextcloud-server-2b95ae1e6d2296ef81259e6762fb3e6662f3bc6c.zip
spaces to tabs
Diffstat (limited to 'lib/base.php')
-rw-r--r--lib/base.php24
1 files changed, 12 insertions, 12 deletions
diff --git a/lib/base.php b/lib/base.php
index 1d525f7e19d..15308138a14 100644
--- a/lib/base.php
+++ b/lib/base.php
@@ -322,15 +322,15 @@ class OC
}
- public static function loadAppClassPaths()
- {
- foreach(OC_APP::getEnabledApps() as $app) {
- $file = OC_App::getAppPath($app).'/appinfo/classpath.php';
- if(file_exists($file)) {
- require_once $file;
- }
- }
- }
+ public static function loadAppClassPaths()
+ {
+ foreach(OC_APP::getEnabledApps() as $app) {
+ $file = OC_App::getAppPath($app).'/appinfo/classpath.php';
+ if(file_exists($file)) {
+ require_once $file;
+ }
+ }
+ }
public static function init()
@@ -550,9 +550,9 @@ class OC
return;
}
- // load all the classpaths from the enabled apps so they are available
- // in the routing files of each app
- OC::loadAppClassPaths();
+ // load all the classpaths from the enabled apps so they are available
+ // in the routing files of each app
+ OC::loadAppClassPaths();
try {
OC::getRouter()->match(OC_Request::getPathInfo());