Skip to content

Commit

Permalink
修复核心框架问题
Browse files Browse the repository at this point in the history
  • Loading branch information
dreamn committed May 4, 2020
1 parent 8053d24 commit 79b45d3
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
**普通更新,直接删除install目录直接覆盖安装即可,注意修改config.php的相关配置文件**

#### Ver. 2.2(2020.05.04)
**重要更新**

1、[BUG]修复核心框架组件导致的客户端无法访问的问题
2、[BUG]修复添加应用失败的问题

#### Ver. 2.1(2020.05.04)
**重要更新**

Expand Down
2 changes: 1 addition & 1 deletion protected/controller/admin/ApiController.php
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ public function actionDelLastOrder()
public function actionAppCreate()
{//添加应用
$app = new App();
if(arg('id','')!==null){
if(arg('id','')!==''){
$app->set(arg("id"),arg("app_name"), arg("return_url"), arg("notify_url"), arg("connect_key"));
}else{
$app->add(arg("app_name"), arg("return_url"), arg("notify_url"), arg("connect_key"));
Expand Down

0 comments on commit 79b45d3

Please sign in to comment.