Update configs to use [] for array

This commit is contained in:
mattpass
2020-07-07 18:41:46 +01:00
parent 790488644a
commit ce6b124bc8
2 changed files with 12 additions and 12 deletions

View File

@@ -1,7 +1,7 @@
<?php
$newConfigSettingsFile = '<?php
// ICEcoder system settings
$ICEcoderSettings = array(
$ICEcoderSettings = [
"versionNo" => "7.0",
"docRoot" => $_SERVER[\'DOCUMENT_ROOT\'], // Set absolute path of another location if needed
"demoMode" => false,
@@ -13,5 +13,5 @@ $ICEcoderSettings = array(
"newDirPerms" => 755,
"newFilePerms" => 644,
"enableRegistration" => true
);
];
?>';