mirror of
https://github.com/icecoder/ICEcoder.git
synced 2026-03-03 07:13:59 +01:00
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
11 lines
222 B
PHP
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"
|
|
);
|
|
?>
|