fix: bug修复
This commit is contained in:
@@ -16,7 +16,13 @@ class BaseController extends Controller {
|
||||
protected $member_id;
|
||||
protected $lang;
|
||||
|
||||
public function __construct() {
|
||||
protected $module;
|
||||
protected $controller;
|
||||
protected $action;
|
||||
protected $langid;
|
||||
|
||||
public function __construct()
|
||||
{
|
||||
parent::__construct();
|
||||
}
|
||||
|
||||
@@ -24,7 +30,8 @@ class BaseController extends Controller {
|
||||
* 初始化操作
|
||||
* @access protected
|
||||
*/
|
||||
protected function _initialize() {
|
||||
protected function _initialize()
|
||||
{
|
||||
//parent::_initialize();
|
||||
//$this->siteid = Config::get('siteid', 0);
|
||||
$this->module = $this->request->module();
|
||||
|
||||
Reference in New Issue
Block a user