mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-02 01:52:10 +09:00
php의 method_exists()함수에서 대소문자를 구별하지 못하는 문제때문에 발생하는 버그 수정
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@6380 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
efa299b54f
commit
b62d1f863d
1 changed files with 1 additions and 2 deletions
|
|
@ -239,8 +239,7 @@
|
|||
$addon_file = $oAddonController->getCacheFilePath();
|
||||
if(file_exists($addon_file)) @include($addon_file);
|
||||
|
||||
// action 실행
|
||||
if(method_exists($this, $this->act)) {
|
||||
if(isset($this->xml_info->action->{$this->act}) && method_exists($this, $this->act)) {
|
||||
|
||||
// 권한 체크
|
||||
if(!$this->grant->access) return $this->stop("msg_not_permitted_act");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue