DHTML 에디터 관련 코드 수정
This commit is contained in:
@ -32,7 +32,7 @@ if (file_exists($himg))
|
||||
echo '<div id="sev_himg" class="sev_img"><img src="'.G5_DATA_URL.'/event/'.$ev_id.'_h" alt=""></div>';
|
||||
|
||||
// 상단 HTML
|
||||
echo '<div id="sev_hhtml">'.stripslashes($ev['ev_head_html']).'</div>';
|
||||
echo '<div id="sev_hhtml">'.conv_content($ev['ev_head_html'], 1).'</div>';
|
||||
|
||||
// 상품 출력순서가 있다면
|
||||
if ($sort != "")
|
||||
@ -93,7 +93,7 @@ echo get_paging($config['cf_write_pages'], $page, $total_page, "{$_SERVER['PHP_S
|
||||
|
||||
<?php
|
||||
// 하단 HTML
|
||||
echo '<div id="sev_thtml">'.stripslashes($ev['ev_tail_html']).'</div>';
|
||||
echo '<div id="sev_thtml">'.conv_content($ev['ev_tail_html'], 1).'</div>';
|
||||
|
||||
$timg = G5_DATA_PATH.'/event/'.$ev_id.'_t';
|
||||
if (file_exists($timg))
|
||||
|
||||
@ -119,7 +119,7 @@ if ($is_admin) {
|
||||
<!-- 상품 상세보기 시작 { -->
|
||||
<?php
|
||||
// 상단 HTML
|
||||
echo '<div id="sit_hhtml">'.stripslashes($it['it_head_html']).'</div>';
|
||||
echo '<div id="sit_hhtml">'.conv_content($it['it_head_html'], 1).'</div>';
|
||||
|
||||
// 보안서버경로
|
||||
if (G5_HTTPS_DOMAIN)
|
||||
@ -247,7 +247,7 @@ function pg_anchor($anc_id) {
|
||||
|
||||
<?php
|
||||
// 하단 HTML
|
||||
echo stripslashes($it['it_tail_html']);
|
||||
echo conv_content($it['it_tail_html'], 1);
|
||||
?>
|
||||
|
||||
<?php
|
||||
|
||||
@ -53,7 +53,7 @@ $is_dhtml_editor = false;
|
||||
if ($config['cf_editor'] && !G5_IS_MOBILE) {
|
||||
$is_dhtml_editor = true;
|
||||
}
|
||||
$editor_html = editor_html('iq_question', $qa['iq_question'], $is_dhtml_editor);
|
||||
$editor_html = editor_html('iq_question', get_text($qa['iq_question'], 0), $is_dhtml_editor);
|
||||
$editor_js = '';
|
||||
$editor_js .= get_editor_js('iq_question', $is_dhtml_editor);
|
||||
$editor_js .= chk_editor_js('iq_question', $is_dhtml_editor);
|
||||
|
||||
@ -48,7 +48,7 @@ $is_dhtml_editor = false;
|
||||
if ($config['cf_editor'] && !G5_IS_MOBILE) {
|
||||
$is_dhtml_editor = true;
|
||||
}
|
||||
$editor_html = editor_html('is_content', $use['is_content'], $is_dhtml_editor);
|
||||
$editor_html = editor_html('is_content', get_text($use['is_content'], 0), $is_dhtml_editor);
|
||||
$editor_js = '';
|
||||
$editor_js .= get_editor_js('is_content', $is_dhtml_editor);
|
||||
$editor_js .= chk_editor_js('is_content', $is_dhtml_editor);
|
||||
|
||||
@ -62,7 +62,7 @@ var itemlist_ca_id = "<?php echo $ca_id; ?>";
|
||||
include $nav_skin;
|
||||
|
||||
// 상단 HTML
|
||||
echo '<div id="sct_hhtml">'.stripslashes($ca['ca_head_html']).'</div>';
|
||||
echo '<div id="sct_hhtml">'.conv_content($ca['ca_head_html'], 1).'</div>';
|
||||
|
||||
$cate_skin = $skin_dir.'/listcategory.skin.php';
|
||||
if(!is_file($cate_skin))
|
||||
@ -138,7 +138,7 @@ var itemlist_ca_id = "<?php echo $ca_id; ?>";
|
||||
|
||||
<?php
|
||||
// 하단 HTML
|
||||
echo '<div id="sct_thtml">'.stripslashes($ca['ca_tail_html']).'</div>';
|
||||
echo '<div id="sct_thtml">'.conv_content($ca['ca_tail_html'], 1).'</div>';
|
||||
|
||||
?>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user