Commit 4bb4851d by 冷斌

Merge remote-tracking branch 'origin/master'

parents e437b609 bd37d75d
...@@ -155,10 +155,8 @@ class UserAction extends CommonAction ...@@ -155,10 +155,8 @@ class UserAction extends CommonAction
$this->assign('vip', $vip); $this->assign('vip', $vip);
// 测试用 // 测试用
if ($_GET['aaa']) { if ($_GET['aaa']) {
echo 111;
$this->display('index1'); $this->display('index1');
} else { } else {
echo 222;
$this->display(); $this->display();
} }
......
...@@ -553,6 +553,7 @@ abstract class Action ...@@ -553,6 +553,7 @@ abstract class Action
if (APP_NAME == admin || strrpos(MODULE_NAME, 'Admin') === 0) { if (APP_NAME == admin || strrpos(MODULE_NAME, 'Admin') === 0) {
$templateFile = $templateFile; $templateFile = $templateFile;
} else { } else {
echo $templateFile;
$this->is_pc ? $templateFile : $templateFile = ($templateFile ?: ACTION_NAME) . "_w3g"; $this->is_pc ? $templateFile : $templateFile = ($templateFile ?: ACTION_NAME) . "_w3g";
} }
......
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