diff options
author | Robin Appelman <icewind@owncloud.com> | 2012-07-24 00:39:59 +0200 |
---|---|---|
committer | Robin Appelman <icewind@owncloud.com> | 2012-07-24 00:39:59 +0200 |
commit | 856d9c0b54cc971940df4ed64429d994faf770f9 (patch) | |
tree | d89f73b5e24b6c0535e6669080f15ef5e1165e04 /lib/app.php | |
parent | 796768577154dc9cc2542e33d8d81c6a5fa77dea (diff) | |
download | nextcloud-server-856d9c0b54cc971940df4ed64429d994faf770f9.tar.gz nextcloud-server-856d9c0b54cc971940df4ed64429d994faf770f9.zip |
some indention fixes
Diffstat (limited to 'lib/app.php')
-rwxr-xr-x | lib/app.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/app.php b/lib/app.php index 2b975de9ef0..56132c08671 100755 --- a/lib/app.php +++ b/lib/app.php @@ -195,7 +195,7 @@ class OC_App{ // check if the app is compatible with this version of ownCloud $info=OC_App::getAppInfo($app); $version=OC_Util::getVersion(); - if(!isset($info['require']) or ($version[0]>$info['require'])){ + if(!isset($info['require']) or ($version[0]>$info['require'])){ OC_Log::write('core','App "'.$info['name'].'" can\'t be installed because it is not compatible with this version of ownCloud',OC_Log::ERROR); return false; }else{ @@ -331,8 +331,8 @@ class OC_App{ } /** - * Get the path where to install apps - */ + * Get the path where to install apps + */ public static function getInstallPath() { if(OC_Config::getValue('appstoreenabled', true)==false) { return false; |