Respect coding style

This commit is contained in:
Thomas Müller 2012-09-04 15:21:52 +03:00
parent acb9682807
commit d14f8fa681
1 changed files with 1 additions and 1 deletions

View File

@ -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';
}