Use "else if" to remove one level of indentation.

This commit is contained in:
Andreas Fischer 2013-10-28 22:19:15 +01:00
parent f130caa4a2
commit b8dbec0da4
1 changed files with 11 additions and 13 deletions

View File

@ -72,8 +72,7 @@ class Upgrade extends Command {
$updater->upgrade();
return self::ERROR_SUCCESS;
} else {
if(\OC_Config::getValue('maintenance', false)) {
} else if(\OC_Config::getValue('maintenance', false)) {
//Possible scenario: ownCloud core is updated but an app failed
$output->writeln('ownCloud is in maintenance mode');
$output->write('Maybe an upgrade is already in process. Please check the '
@ -88,4 +87,3 @@ class Upgrade extends Command {
}
}
}
}