#291 주문오류 알림 메일 및 안내 문구 추가

This commit is contained in:
chicpro
2013-09-09 14:17:04 +09:00
parent 70391e1c2c
commit efad4e648d
4 changed files with 57 additions and 6 deletions

View File

@ -2370,4 +2370,13 @@ function certify_count_check($mb_id, $type)
if((int)$row['cnt'] >= (int)$config['cf_cert_limit'])
alert_close('오늘 '.$cert.' 본인확인을 '.$row['cnt'].'회 이용하셔서 더 이상 이용할 수 없습니다.');
}
// die 함수를 utf-8 환경에서 사용할 때 한글깨짐방지
function die_utf8($msg)
{
if(!trim($msg))
return;
die('<html><head><head><meta charset="utf-8"></head>'.$msg.'</html>');
}
?>