From 4939c3936d36e3c937caddc57b0df2fc4e2f950c Mon Sep 17 00:00:00 2001 From: kevin_fourie Date: Thu, 24 Apr 2008 09:28:19 +0000 Subject: [PATCH] Merged in from DEV trunk... --- lib/upgrades/UpgradeFunctions.inc.php | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/lib/upgrades/UpgradeFunctions.inc.php b/lib/upgrades/UpgradeFunctions.inc.php index b0bfb00..dd4fba2 100644 --- a/lib/upgrades/UpgradeFunctions.inc.php +++ b/lib/upgrades/UpgradeFunctions.inc.php @@ -1024,7 +1024,13 @@ class UpgradeFunctions { // {{{ updateConfigFile35 function updateConfigFile35() { - $config = KTConfig::getSingleton(); + // The following is no longer needed due to defaults now being in place. + // It also was corrupting the file "sometimes". + // We leave the function in but do nothing so we don't mess with the upgrades table. + + return; + +/* $config = KTConfig::getSingleton(); $configPath = KTConfig::getConfigFilename(); $configPath = str_replace(array("\n","\r"), array('',''), $configPath); @@ -1147,6 +1153,7 @@ class UpgradeFunctions { $ini->write(); } +*/ } // }}} -- libgit2 0.21.4