From 78559e50812e197adeb94e3d56988b4dade0c2b4 Mon Sep 17 00:00:00 2001 From: conradverm Date: Tue, 13 Feb 2007 12:56:47 +0000 Subject: [PATCH] KTS-1687 "Double quote to single quote conversion" Fixed. Reviewed by: Kevin Fourie --- bin/automated_upgrade.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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(); -- libgit2 0.21.4