버전 5.4.5.3 수정

This commit is contained in:
thisgun
2021-04-05 17:02:24 +09:00
6 changed files with 53 additions and 31 deletions

View File

@ -69,6 +69,8 @@ if( !$is_editor_upload ){
exit;
}
run_event('cheditor_photo_upload', $data_dir, $data_url);
//----------------------------------------------------------------------------
//
//

View File

@ -40,6 +40,8 @@ if( isset($_GET['_nonce']) && ft_nonce_is_valid( $_GET['_nonce'] , 'smarteditor'
}
if( $is_editor_upload ) {
run_event('smarteditor_photo_upload', $data_dir, $data_url);
require('UploadHandler.php');
$options = array(

View File

@ -162,10 +162,15 @@ if($config['cf_sms_type'] == 'LMS') {
var $Log = array();
function Add($strDest, $strCallBack, $strCaller, $strSubject, $strURL, $strData, $strDate="", $nCount) {
// EUC-KR로 변환
$strCaller = iconv_euckr($strCaller);
$strSubject = iconv_euckr($strSubject);
$strData = iconv_euckr($strData);
global $config;
// 아이코드 JSON 모듈은 UTF-8 을 사용하며, sms 또는 lms 는 euc-kr 로 사용한다.
if(! (isset($config['cf_icode_token_key']) && $config['cf_icode_token_key'])){
// EUC-KR로 변환
$strCaller = iconv_euckr($strCaller);
$strSubject = iconv_euckr($strSubject);
$strData = iconv_euckr($strData);
}
return parent::Add($strDest, $strCallBack, $strCaller, $strSubject, $strURL, $strData, $strDate, $nCount);
}