From c0ab079bca538e712827fb177d656a26c23f333f Mon Sep 17 00:00:00 2001 From: chicpro Date: Wed, 30 Sep 2015 14:13:36 +0900 Subject: [PATCH] =?UTF-8?q?=EB=AA=A8=EB=B0=94=EC=9D=BC=20dhtml=20=EC=97=90?= =?UTF-8?q?=EB=94=94=ED=84=B0=20=EC=A0=81=EC=9A=A9=20=EC=83=81=EC=88=98=20?= =?UTF-8?q?=EC=A0=81=EC=9A=A9=EB=90=98=EB=8F=84=EB=A1=9D=20=EC=88=98?= =?UTF-8?q?=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- mobile/shop/itemqaform.php | 2 +- mobile/shop/itemuseform.php | 2 +- shop/itemqaform.php | 2 +- shop/itemuseform.php | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/mobile/shop/itemqaform.php b/mobile/shop/itemqaform.php index e0e338263..1b81501f5 100644 --- a/mobile/shop/itemqaform.php +++ b/mobile/shop/itemqaform.php @@ -44,7 +44,7 @@ include_once(G5_PATH.'/head.sub.php'); $is_dhtml_editor = false; // 모바일에서는 DHTML 에디터 사용불가 -if ($config['cf_editor'] && !G5_IS_MOBILE) { +if ($config['cf_editor'] && (!is_mobile() || defined('G5_IS_MOBILE_DHTML_USE') && G5_IS_MOBILE_DHTML_USE)) { $is_dhtml_editor = true; } $editor_html = editor_html('iq_question', get_text($qa['iq_question'], 0), $is_dhtml_editor); diff --git a/mobile/shop/itemuseform.php b/mobile/shop/itemuseform.php index 3792c9463..2063d7eb1 100644 --- a/mobile/shop/itemuseform.php +++ b/mobile/shop/itemuseform.php @@ -39,7 +39,7 @@ include_once(G5_PATH.'/head.sub.php'); $is_dhtml_editor = false; // 모바일에서는 DHTML 에디터 사용불가 -if ($config['cf_editor'] && !G5_IS_MOBILE) { +if ($config['cf_editor'] && (!is_mobile() || defined('G5_IS_MOBILE_DHTML_USE') && G5_IS_MOBILE_DHTML_USE)) { $is_dhtml_editor = true; } $editor_html = editor_html('is_content', get_text($use['is_content'], 0), $is_dhtml_editor); diff --git a/shop/itemqaform.php b/shop/itemqaform.php index 0ac3e9dfb..c6e58922d 100644 --- a/shop/itemqaform.php +++ b/shop/itemqaform.php @@ -50,7 +50,7 @@ include_once(G5_PATH.'/head.sub.php'); $is_dhtml_editor = false; // 모바일에서는 DHTML 에디터 사용불가 -if ($config['cf_editor'] && !G5_IS_MOBILE) { +if ($config['cf_editor'] && (!is_mobile() || defined('G5_IS_MOBILE_DHTML_USE') && G5_IS_MOBILE_DHTML_USE)) { $is_dhtml_editor = true; } $editor_html = editor_html('iq_question', get_text($qa['iq_question'], 0), $is_dhtml_editor); diff --git a/shop/itemuseform.php b/shop/itemuseform.php index 08d9e5933..eb9fcf5e4 100644 --- a/shop/itemuseform.php +++ b/shop/itemuseform.php @@ -45,7 +45,7 @@ include_once(G5_PATH.'/head.sub.php'); $is_dhtml_editor = false; // 모바일에서는 DHTML 에디터 사용불가 -if ($config['cf_editor'] && !G5_IS_MOBILE) { +if ($config['cf_editor'] && (!is_mobile() || defined('G5_IS_MOBILE_DHTML_USE') && G5_IS_MOBILE_DHTML_USE)) { $is_dhtml_editor = true; } $editor_html = editor_html('is_content', get_text($use['is_content'], 0), $is_dhtml_editor);