php의 method_exists()함수에서 대소문자를 구별하지 못하는 문제때문에 발생하는 버그 수정

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@6380 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
zero 2009-05-24 23:49:32 +00:00
parent efa299b54f
commit b62d1f863d

View file

@ -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");