1
0
mirror of https://github.com/monstra-cms/monstra.git synced 2025-08-11 23:54:10 +02:00

Core Improvements: Next Round #79 #80

This commit is contained in:
Awilum
2013-01-06 18:50:50 +02:00
parent 5e332c4a52
commit 0f59fa83fc
9 changed files with 18 additions and 18 deletions

View File

@@ -14,17 +14,17 @@
*/
/**
* Should we use the Monstra Autoloader to ensure the dependancies are automatically
* Should we use the Gelato Autoloader to ensure the dependancies are automatically
* loaded?
*/
if ( ! defined('GELATO_LIBRARY_AUTOLOADER')) {
define('GELATO_LIBRARY_AUTOLOADER', true);
if ( ! defined('GELATO_AUTOLOADER')) {
define('GELATO_AUTOLOADER', true);
}
/**
* Register autoload function
*/
if (GELATO_LIBRARY_AUTOLOADER) {
if (GELATO_AUTOLOADER) {
spl_autoload_register(array('Gelato', 'autoload'));
}
@@ -35,7 +35,7 @@ class Gelato
{
/**
* The version of Monstra
* The version of Gelato
*/
const VERSION = '1.0.0';