From 04a1d821723e782c2ec8611ab661062678b627ef Mon Sep 17 00:00:00 2001 From: Duncan Sommerville Date: Fri, 16 Jan 2015 09:32:55 -0500 Subject: [PATCH] Upgrade step from 2.5.1 installs --- airtime_mvc/application/Bootstrap.php | 4 ---- 1 file changed, 4 deletions(-) diff --git a/airtime_mvc/application/Bootstrap.php b/airtime_mvc/application/Bootstrap.php index 3af4c793e..525489a41 100644 --- a/airtime_mvc/application/Bootstrap.php +++ b/airtime_mvc/application/Bootstrap.php @@ -80,10 +80,6 @@ class Bootstrap extends Zend_Application_Bootstrap_Bootstrap protected function _initUpgrade() { if (AIRTIME_CODE_VERSION > Application_Model_Preference::GetAirtimeVersion()) { - // This line is actually fairly important (incidentally) because it - // instantiates the logger singleton, which in turn decides the Airtime PHP error policy, - // otherwise we would trip up on the '#' characters in airtime.conf - Logging::info("Checking if upgrade is needed..."); $upgradeManager = new UpgradeManager(); $upgradeManager->runUpgrades(array(new AirtimeUpgrader252()), (__DIR__ . "/controllers")); }