diff --git a/mobile/shop/itemqaform.php b/mobile/shop/itemqaform.php index a428fed6e..279205068 100644 --- a/mobile/shop/itemqaform.php +++ b/mobile/shop/itemqaform.php @@ -6,9 +6,6 @@ if (!$is_member) { alert_close("상품문의는 회원만 작성 가능합니다."); } -// 상품문의의 내용에 쓸수 있는 최대 글자수 (한글은 영문3자) -$iq_question_max_length = 10000; - $w = escape_trim($_REQUEST['w']); $it_id = escape_trim($_REQUEST['it_id']); $iq_id = escape_trim($_REQUEST['iq_id']); diff --git a/mobile/shop/itemuseform.php b/mobile/shop/itemuseform.php index 2efe83ede..50a316843 100644 --- a/mobile/shop/itemuseform.php +++ b/mobile/shop/itemuseform.php @@ -6,9 +6,6 @@ if (!$is_member) { alert_close("사용후기는 회원만 작성 가능합니다."); } -// 사용후기의 내용에 쓸수 있는 최대 글자수 (한글은 영문3자) -$is_content_max_length = 10000; - $w = escape_trim($_REQUEST['w']); $it_id = escape_trim($_REQUEST['it_id']); $is_id = escape_trim($_REQUEST['is_id']); diff --git a/mobile/skin/shop/basic/itemqaform.skin.php b/mobile/skin/shop/basic/itemqaform.skin.php index 2d421d050..989ee8d48 100644 --- a/mobile/skin/shop/basic/itemqaform.skin.php +++ b/mobile/skin/shop/basic/itemqaform.skin.php @@ -41,12 +41,6 @@ function fitemqa_submit(f) { - if (iq_question_editor_data.length > ) { - alert("내용은 글자 이내에서 작성해 주세요. (한글은 영문 3자)\n\n현재 : "+iq_question_editor_data.length+" 글자"); - CKEDITOR.instances.iq_question.focus(); - return false; - } - return true; } diff --git a/mobile/skin/shop/basic/itemuseform.skin.php b/mobile/skin/shop/basic/itemuseform.skin.php index eb5fbb4d8..01a96402c 100644 --- a/mobile/skin/shop/basic/itemuseform.skin.php +++ b/mobile/skin/shop/basic/itemuseform.skin.php @@ -72,29 +72,8 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가 diff --git a/shop/itemqaform.php b/shop/itemqaform.php index 97172a07f..16d2a1a38 100644 --- a/shop/itemqaform.php +++ b/shop/itemqaform.php @@ -12,9 +12,6 @@ if (!$is_member) { alert_close("상품문의는 회원만 작성 가능합니다."); } -// 상품문의의 내용에 쓸수 있는 최대 글자수 (한글은 영문3자) -$iq_question_max_length = 10000; - $w = escape_trim($_REQUEST['w']); $it_id = escape_trim($_REQUEST['it_id']); $iq_id = escape_trim($_REQUEST['iq_id']); diff --git a/shop/itemuseform.php b/shop/itemuseform.php index fa9c24ca7..3bed49711 100644 --- a/shop/itemuseform.php +++ b/shop/itemuseform.php @@ -12,9 +12,6 @@ if (!$is_member) { alert_close("사용후기는 회원만 작성 가능합니다."); } -// 사용후기의 내용에 쓸수 있는 최대 글자수 (한글은 영문3자) -$is_content_max_length = 10000; - $w = escape_trim($_REQUEST['w']); $it_id = escape_trim($_REQUEST['it_id']); $is_id = escape_trim($_REQUEST['is_id']); diff --git a/skin/shop/basic/itemqaform.skin.php b/skin/shop/basic/itemqaform.skin.php index 0168259e5..122da842a 100644 --- a/skin/shop/basic/itemqaform.skin.php +++ b/skin/shop/basic/itemqaform.skin.php @@ -41,12 +41,6 @@ function fitemqa_submit(f) { - if (iq_question_editor_data.length > ) { - alert("내용은 글자 이내에서 작성해 주세요. (한글은 영문 3자)\n\n현재 : "+iq_question_editor_data.length+" 글자"); - CKEDITOR.instances.iq_question.focus(); - return false; - } - return true; } diff --git a/skin/shop/basic/itemuseform.skin.php b/skin/shop/basic/itemuseform.skin.php index 72fee20aa..95d19d472 100644 --- a/skin/shop/basic/itemuseform.skin.php +++ b/skin/shop/basic/itemuseform.skin.php @@ -74,12 +74,6 @@ function fitemuse_submit(f) { - if (is_content_editor_data.length > ) { - alert("내용은 글자 이내에서 작성해 주세요. (한글은 영문 3자)\n\n현재 : "+is_content_editor_data.length+" 글자"); - CKEDITOR.instances.is_content.focus(); - return false; - } - return true; }