#20 에 따른 내용관리 상하단 이미지 출력 오류 수정

This commit is contained in:
chicpro
2013-04-18 09:33:54 +09:00
parent 5200e0bdd4
commit ea5ad391f0

View File

@ -83,7 +83,7 @@ include_once (G4_ADMIN_PATH.'/admin.head.php');
$himg = G4_DATA_PATH.'/content/'.$co['co_id'].'_h';
if (file_exists($himg)) {
echo '<input type="checkbox" name="co_himg_del" value="1" id="co_himg_del"> <label for="co_himg_del">삭제</label>';
$himg_str = '<img src="'.$himg.'" alt="">';
$himg_str = '<img src="'.G4_DATA_URL.'/content/'.$co['co_id'].'_h" alt="">';
}
if ($himg_str) {
echo '<div class="banner_or_img">';
@ -101,7 +101,7 @@ include_once (G4_ADMIN_PATH.'/admin.head.php');
$timg = G4_DATA_PATH.'/content/'.$co['co_id'].'_t';
if (file_exists($timg)) {
echo '<input type="checkbox" name="co_timg_del" value="1" id="co_timg_del"> <label for="co_timg_del">삭제</label>';
$timg_str = '<img src="'.$timg.'" alt="">';
$timg_str = '<img src="'.G4_DATA_URL.'/content/'.$co['co_id'].'_t" alt="">';
}
if ($timg_str) {
echo '<div class="banner_or_img">';