diff --git a/CHANGELOG.md b/CHANGELOG.md index 464f95d..33dde72 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # DiliCMS更新日志 +## 版本号 2.4.0 + +> 2014年11月14日 更新内容 + +- CI内核升级到v2.2.0 + ## 版本号 2.3.3 > 2014年11月14日 更新内容 diff --git a/shared/config/constant.php b/shared/config/constant.php index 84c84ed..7bd5f6d 100755 --- a/shared/config/constant.php +++ b/shared/config/constant.php @@ -9,13 +9,13 @@ | */ - define('IN_DILICMS', TRUE); + define('IN_DILICMS', TRUE); + + define('DILICMS_VERSION', 'V2.4.0'); - define('DILICMS_VERSION', 'V2.3.1'); - define('DILICMS_SHARE_PATH', BASEPATH . '../shared/'); - + define('DILICMS_EXTENSION_PATH', BASEPATH . '../extensions/'); /* End of file constant.php */ -/* Location: ./shared/config/constant.php */ \ No newline at end of file +/* Location: ./shared/config/constant.php */ diff --git a/shared/libraries/Settings.php b/shared/libraries/Settings.php index 16377de..3d40a28 100755 --- a/shared/libraries/Settings.php +++ b/shared/libraries/Settings.php @@ -64,7 +64,7 @@ class Settings * @access private **/ private $_setting_paths = array(); - + /** * 构造函数 * @@ -77,7 +77,7 @@ public function __construct() $this->_setting_paths = array(DILICMS_SHARE_PATH . 'settings/'); $this->load('site', FALSE, TRUE); } - + // ------------------------------------------------------------------------ /**