모바일 상품정보 나오지 않는 오류 수정

This commit is contained in:
thisgun
2018-04-09 12:04:51 +09:00
parent bb40987da5
commit b4de423fb3
2 changed files with 2 additions and 2 deletions

View File

@ -354,7 +354,7 @@ add_stylesheet('<link rel="stylesheet" href="'.G5_SHOP_CSS_URL.'/style.css">', 0
<?php if ($it['it_explan']) { // 상품 상세설명 ?>
<h3>상품 상세설명</h3>
<div id="sit_inf_explan">
<?php echo conv_content($it['it_explan'], 1); ?>
<?php echo ($it['it_mobile_explan'] ? conv_content($it['it_mobile_explan'], 1) : conv_content($it['it_explan'], 1)); ?>
</div>
<?php } ?>

View File

@ -354,7 +354,7 @@ add_stylesheet('<link rel="stylesheet" href="'.G5_SHOP_CSS_URL.'/style.css">', 0
<?php if ($it['it_explan']) { // 상품 상세설명 ?>
<h3>상품 상세설명</h3>
<div id="sit_inf_explan">
<?php echo conv_content($it['it_explan'], 1); ?>
<?php echo ($it['it_mobile_explan'] ? conv_content($it['it_mobile_explan'], 1) : conv_content($it['it_explan'], 1)); ?>
</div>
<?php } ?>