diff --git a/application/admin/controller/Menu.php b/application/admin/controller/Menu.php index 4b08c77b6..f8e6928b3 100644 --- a/application/admin/controller/Menu.php +++ b/application/admin/controller/Menu.php @@ -58,14 +58,14 @@ class Menu extends BasicAdmin { * 添加菜单 */ public function add() { - return $this->_form($this->table); + return $this->_form($this->table, 'form'); } /** * 编辑菜单 */ public function edit() { - return $this->_form($this->table); + return $this->_form($this->table, 'form'); } /** diff --git a/extend/controller/BasicAdmin.php b/extend/controller/BasicAdmin.php index 875fa9354..f1f42b719 100644 --- a/extend/controller/BasicAdmin.php +++ b/extend/controller/BasicAdmin.php @@ -156,7 +156,7 @@ class BasicAdmin extends Controller { $this->_callback('_form_filter', $vo); $this->assign('vo', $vo); empty($this->title) or $this->assign('title', $this->title); - return is_null($tpl) ? $vo : $this->display($tpl); + return is_null($tpl) ? $vo : $this->fetch($tpl); } /**