Files
ICEcoder/lib/config___settings.php
Matt Pass ba520e6aa1 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
2013-06-04 18:01:44 +01:00

11 lines
222 B
PHP

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