Skip to content

Commit

Permalink
fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
lisijie committed Aug 20, 2018
1 parent d0d623d commit 0847491
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
},
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
"dev-master": "2.2.x-dev"
}
}
}
6 changes: 3 additions & 3 deletions src/Const.php
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?php
//版本号
define('VERSION', '2.2.0');
define('VERSION', '2.2.1');
//发布时间
define('RELEASE', '20180514');
define('RELEASE', '20180820');
//用于访问检查
define('IN_APP', TRUE);
//目录分隔符
Expand All @@ -24,7 +24,7 @@
//视图模板目录
defined('VIEW_PATH') or define('VIEW_PATH', APP_PATH . DS . 'View');
//发布目录
defined('PUBLIC_PATH') or define('PUBLIC_PATH', (isset($_SERVER['SCRIPT_FILENAME']) ? dirname($_SERVER['SCRIPT_FILENAME']) : getcwd()));
defined('PUBLIC_PATH') or define('PUBLIC_PATH', realpath(dirname($_SERVER['SCRIPT_FILENAME'])));

/************* 字符集 ****************/
defined('CHARSET') or define('CHARSET', 'utf-8');
Expand Down

0 comments on commit 0847491

Please sign in to comment.