쇼핑몰관리자: ie6 이벤트관리 관련상품 등록 스타일 오류 수정
This commit is contained in:
@ -224,8 +224,8 @@ include_once (G5_ADMIN_PATH.'/admin.head.php');
|
|||||||
?>
|
?>
|
||||||
<li>
|
<li>
|
||||||
<input type="hidden" name="it_id[]" value="<?php echo $row['it_id']; ?>">
|
<input type="hidden" name="it_id[]" value="<?php echo $row['it_id']; ?>">
|
||||||
<?php echo $it_name; ?>
|
<div class="list_item"><?php echo $it_name; ?></div>
|
||||||
<button type="button" class="del_item">삭제</button>
|
<div class="list_item_btn"><button type="button" class="del_item btn_frmline">삭제</button></div>
|
||||||
</li>
|
</li>
|
||||||
<?php
|
<?php
|
||||||
}
|
}
|
||||||
|
|||||||
@ -26,8 +26,8 @@ for($i=0;$row=sql_fetch_array($result);$i++) {
|
|||||||
|
|
||||||
$list .= '<li>';
|
$list .= '<li>';
|
||||||
$list .= '<input type="hidden" name="it_id[]" value="'.$row['it_id'].'">';
|
$list .= '<input type="hidden" name="it_id[]" value="'.$row['it_id'].'">';
|
||||||
$list .= $it_name;
|
$list .= '<div class="list_item">'.$it_name.'</div>';
|
||||||
$list .= '<button type="button" class="add_item">추가</button>';
|
$list .= '<div class="list_item_btn"><button type="button" class="add_item btn_frmline">추가</button></div>';
|
||||||
$list .= '</li>'.PHP_EOL;
|
$list .= '</li>'.PHP_EOL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user