diff --git a/bin/automated_upgrade.php b/bin/automated_upgrade.php index 6e53747..540f6db 100644 --- a/bin/automated_upgrade.php +++ b/bin/automated_upgrade.php @@ -64,13 +64,13 @@ foreach ($upgrades as $step) { continue; } $res = $step->performUpgrade(); - print " RESULT: "; + print ' RESULT: '; if ($res === true) { - print "Success"; + print 'Success'; } if (PEAR::isError($res)) { - if (is_a($res, strtolower("Upgrade_Already_Applied"))) { - print "Already applied"; + if (is_a($res, strtolower('Upgrade_Already_Applied'))) { + print 'Already applied'; } else { print "ERROR\n"; print $res->toString();