Commit 72460d15 authored by Medicean's avatar Medicean

(Fix:Core) fix #141 (thx @RoyTse)

parent 96984066
...@@ -9,6 +9,7 @@ ...@@ -9,6 +9,7 @@
* 执行命令新增 `antsystem` 函数, 具体见: https://github.com/AntSwordProject/ant_php_extension * 执行命令新增 `antsystem` 函数, 具体见: https://github.com/AntSwordProject/ant_php_extension
* Fix 编码器保存后不生效的问题 #135 (thx @K4ngx) * Fix 编码器保存后不生效的问题 #135 (thx @K4ngx)
* Fix core download 参数遗漏问题 #142 (thx @RoyTse) * Fix core download 参数遗漏问题 #142 (thx @RoyTse)
* Fix #141 (thx @RoyTse)
### 虚拟终端 ### 虚拟终端
......
...@@ -158,7 +158,7 @@ class Base { ...@@ -158,7 +158,7 @@ class Base {
retStr = argv[tagStr] || ''; retStr = argv[tagStr] || '';
} }
// 组合最终生成模板代码 // 组合最终生成模板代码
data[arg] = args[arg].replace(tag, retStr); data[arg] = data[arg].replace(tag, retStr);
} }
) )
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment