diff --git a/lib/updater.php b/lib/updater.php
index ad9b433..cbec434 100644
--- a/lib/updater.php
+++ b/lib/updater.php
@@ -193,13 +193,14 @@ function transposeSettings($oldFile,$newFile,$saveFile) {
}
function copyOverSettings($icvInfo) {
- global $updateDone;
+ global $updateDone, $configSettings;
// System settings
echo 'Transposing system settings...
';
// Create a new config file if it doesn't exist yet.
// The reason we create it, is so it has PHP write permissions, meaning we can update it later
if (!file_exists(dirname(__FILE__)."/".$configSettings)) {
+ echo 'Creating new settings file...
';
// Include our params to make use of (as $newConfigSettingsFile)
include(dirname(__FILE__)."/settings-system-params.php");
if ($fConfigSettings = fopen(dirname(__FILE__)."/".$configSettings, 'w')) {