diff --git a/index.php b/index.php index 0b85ec3f..e2bb033e 100755 --- a/index.php +++ b/index.php @@ -9,7 +9,7 @@ @ini_set('display_errors', 'on'); -// check PHP version +// Check PHP version if (version_compare(PHP_VERSION, '5.5.9', '<')) { exit( '[Error] Blessing Skin Server needs PHP version >= 5.5.9, you are now using '.PHP_VERSION.'
'. @@ -19,11 +19,11 @@ if (version_compare(PHP_VERSION, '5.5.9', '<')) { require __DIR__.'/bootstrap/autoload.php'; -// check the runtime environment +// Check the runtime environment runtime_check(array( 'extensions' => array('pdo_mysql', 'openssl', 'gd', 'mbstring', 'tokenizer'), 'write_permission' => array('storage', 'resources', 'plugins') )); -// handle the request +// Process the request require __DIR__.'/bootstrap/kernel.php';