쇼핑몰 : #281 상하단이미지 삭제, list.php에도 수정완료

This commit is contained in:
nemoluv
2013-08-19 09:44:12 +09:00
parent cacbf7ce53
commit f4df5b27e0

View File

@ -53,12 +53,6 @@ if ($is_admin)
$nav_ca_id = $ca_id;
include G4_SHOP_PATH.'/navigation1.inc.php';
// 상단 이미지
$himg = G4_DATA_PATH.'/category/'.$ca_id.'_h';
if (file_exists($himg)) {
echo '<div id="sct_himg" class="sct_img"><img src="'.G4_DATA_URL.'/category/'.$ca_id.'_h" alt=""></div>';
}
// 상단 HTML
echo '<div id="sct_hhtml">'.stripslashes($ca['ca_head_html']).'</div>';
@ -136,10 +130,6 @@ if ($is_admin)
// 하단 HTML
echo '<div id="sct_thtml">'.stripslashes($ca['ca_tail_html']).'</div>';
// 하단 이미지
$timg = G4_DATA_PATH.'/category/'.$ca_id.'_t';
if (file_exists($timg))
echo '<div id="sct_timg" class="sct_img"><img src="'.G4_DATA_URL.'/category/'.$ca_id.'_t" alt="">';
?>
</div>
<!-- } 상품 목록 끝 -->