버전 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

@ -111,7 +111,7 @@ while ($row = sql_fetch_array($result))
} }
} }
// 게시글 삭제 // 게시글과 댓글 삭제
sql_query(" delete from $write_table where wr_parent = '{$write['wr_id']}' "); sql_query(" delete from $write_table where wr_parent = '{$write['wr_id']}' ");
// 최근게시물 삭제 // 최근게시물 삭제

View File

@ -5,8 +5,8 @@
********************/ ********************/
define('G5_VERSION', '그누보드5'); define('G5_VERSION', '그누보드5');
define('G5_GNUBOARD_VER', '5.4.5.2'); define('G5_GNUBOARD_VER', '5.4.5.3');
define('G5_YOUNGCART_VER', '5.4.5.2'); define('G5_YOUNGCART_VER', '5.4.5.3');
// 이 상수가 정의되지 않으면 각각의 개별 페이지는 별도로 실행될 수 없음 // 이 상수가 정의되지 않으면 각각의 개별 페이지는 별도로 실행될 수 없음
define('_GNUBOARD_', true); define('_GNUBOARD_', true);

View File

@ -18,35 +18,48 @@ function mailer($fname, $fmail, $to, $subject, $content, $type=0, $file="", $cc=
$result = run_replace('mailer', $fname, $fmail, $to, $subject, $content, $type, $file, $cc, $bcc); $result = run_replace('mailer', $fname, $fmail, $to, $subject, $content, $type, $file, $cc, $bcc);
if( isset($result['return']) ){ if( is_array($result) && isset($result['return']) ){
return $result['return']; return $result['return'];
} }
$mail = new PHPMailer(); // defaults to using php "mail()" $mail_send_result = false;
if (defined('G5_SMTP') && G5_SMTP) {
$mail->IsSMTP(); // telling the class to use SMTP try {
$mail->Host = G5_SMTP; // SMTP server $mail = new PHPMailer(); // defaults to using php "mail()"
if(defined('G5_SMTP_PORT') && G5_SMTP_PORT) if (defined('G5_SMTP') && G5_SMTP) {
$mail->Port = G5_SMTP_PORT; $mail->IsSMTP(); // telling the class to use SMTP
} $mail->Host = G5_SMTP; // SMTP server
$mail->CharSet = 'UTF-8'; if(defined('G5_SMTP_PORT') && G5_SMTP_PORT)
$mail->From = $fmail; $mail->Port = G5_SMTP_PORT;
$mail->FromName = $fname;
$mail->Subject = $subject;
$mail->AltBody = ""; // optional, comment out and test
$mail->msgHTML($content);
$mail->addAddress($to);
if ($cc)
$mail->addCC($cc);
if ($bcc)
$mail->addBCC($bcc);
//print_r2($file); exit;
if ($file != "") {
foreach ($file as $f) {
$mail->addAttachment($f['path'], $f['name']);
} }
$mail->CharSet = 'UTF-8';
$mail->From = $fmail;
$mail->FromName = $fname;
$mail->Subject = $subject;
$mail->AltBody = ""; // optional, comment out and test
$mail->msgHTML($content);
$mail->addAddress($to);
if ($cc)
$mail->addCC($cc);
if ($bcc)
$mail->addBCC($bcc);
//print_r2($file); exit;
if ($file != "") {
foreach ($file as $f) {
$mail->addAttachment($f['path'], $f['name']);
}
}
$mail = run_replace('mail_options', $mail, $fname, $fmail, $to, $subject, $content, $type, $file, $cc, $bcc);
$mail_send_result = $mail->send();
} catch (Exception $e) {
} }
return $mail->send();
run_event('mail_send_result', $mail_send_result, $mail, $to, $cc, $bcc);
return $mail_send_result;
} }
// 파일을 첨부함 // 파일을 첨부함

View File

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

View File

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

View File

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