update application/index/controller/User.php.

移除空请求判断
pull/238/MERGE
Karson 2020-09-20 19:24:57 +08:00 committed by Gitee
parent e550b327dd
commit aa5d413cc0
1 changed files with 0 additions and 14 deletions

View File

@ -51,20 +51,6 @@ class User extends Frontend
});
}
/**
* 空的请求
* @param $name
* @return mixed
*/
public function _empty($name)
{
$data = Hook::listen("user_request_empty", $name);
foreach ($data as $index => $datum) {
$this->view->assign($datum);
}
return $this->view->fetch('user/' . $name);
}
/**
* 会员中心
*/