Update index.php

This commit is contained in:
Namhyeon Go 2019-02-20 01:17:33 +09:00 committed by GitHub
parent 40a62f4542
commit 7922ad2d34
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -9,7 +9,14 @@
define("_DEF_VSPF_", true); // compatible to VSPF
define("_DEF_RSF_", true); // compatible to RSF
define("DOC_EOL", "\r\n"); // add common 'the end of line' expression
define("APP_DEVELOPMENT", false); // add development flag
define("DOC_EOL", "\r\n"); // add 'the end of line' of document
// check if current status is development
if(APP_DEVELOPMENT == true) {
error_reporting(E_ALL);
ini_set("display_errors", 1);
}
// define system modules
$load_systems = array("base", "storage", "config", "database", "uri", "security", "logger");