Added config settings file

These were buried in the settings.php file, now pulled out of the file
and put into their own array
This is so they can be found easier
This commit is contained in:
Matt Pass
2013-06-04 18:01:44 +01:00
parent 61373e87ea
commit ba520e6aa1

11
lib/config___settings.php Normal file
View File

@@ -0,0 +1,11 @@
<?php
// ICEcoder system settings
$ICEcoderSettings = array(
"versionNo" => "2.5",
"codeMirrorDir" => "CodeMirror-3.13",
"demoMode" => false,
"devMode" => false,
"multiUser" => false,
"lineEnding" => "\n"
);
?>