Changeset 5777

Show
Ignore:
Timestamp:
04/20/08 12:33:08 (7 months ago)
Author:
inureyes
Message:

#759

  • 플러그인 xml 해석시 오류 처리 부분에서 에러코드를 제대로 파싱해서 기록하지 못하는 문제 수정
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/lib/model/common.plugin.php

    r5775 r5777  
    124124    if (!$xmls->open(file_get_contents(ROOT . "/plugins/$plugin/index.xml"))) { 
    125125        error_log( "PLUGIN XML_PARSE_ERROR: ". $plugin. ": ".  
    126             xml_error_string( xml_get_error_code($xmls->error['code']) ) ); 
     126        xml_error_string($xmls->error['code'])); 
    127127        return false; 
    128128    } else {