summaryrefslogtreecommitdiffstats
path: root/lib/app.php
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2012-09-04 15:21:52 +0300
committerThomas Müller <thomas.mueller@tmit.eu>2012-09-04 15:21:52 +0300
commitd14f8fa681aa820334fcb1747cc171275c84a72d (patch)
tree95e70ad79427a1aef58162635ef9f71245fa63c5 /lib/app.php
parentacb96828074a7583de7b279ea37742bd51f3be3c (diff)
downloadnextcloud-server-d14f8fa681aa820334fcb1747cc171275c84a72d.tar.gz
nextcloud-server-d14f8fa681aa820334fcb1747cc171275c84a72d.zip
Respect coding style
Diffstat (limited to 'lib/app.php')
-rwxr-xr-xlib/app.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/app.php b/lib/app.php
index 154b1a964e7..e772704b7d2 100755
--- a/lib/app.php
+++ b/lib/app.php
@@ -83,7 +83,7 @@ class OC_App{
* @param string app
*/
public static function loadApp($app) {
- if(is_file(self::getAppPath($app).'/appinfo/app.php')){
+ if(is_file(self::getAppPath($app).'/appinfo/app.php')) {
self::checkUpgrade($app);
require_once $app.'/appinfo/app.php';
}