diff --git a/adm/shop_admin/itemeventwin.php b/adm/shop_admin/itemeventwin.php
index 502aafe91..267c17c0d 100644
--- a/adm/shop_admin/itemeventwin.php
+++ b/adm/shop_admin/itemeventwin.php
@@ -7,52 +7,54 @@ auth_check($auth[$sub_menu], "r");
$sql = " select ev_subject from {$g4['shop_event_table']} where ev_id = '$ev_id' ";
$ev = sql_fetch($sql);
-$g4['title'] = '['.$ev['ev_subject'].'] 이벤트상품';
+$g4['title'] = $ev['ev_subject'].' 이벤트상품';
include_once(G4_PATH.'/head.sub.php');
?>
-
+
+
=$g4['title']?>
+
+
+
+ | 상품명 |
+ 사용구분 |
+ 삭제 |
+
+
+
+
+ $sql = " select b.it_id, b.it_name, b.it_use from {$g4['shop_event_item_table']} a
+ left join {$g4['shop_item_table']} b on (a.it_id=b.it_id)
+ where a.ev_id = '$ev_id'
+ order by b.it_id desc ";
+ $result = sql_query($sql);
+ for ($i=0; $row=sql_fetch_array($result); $i++)
+ {
+ $href = G4_SHOP_URL.'/item.php?it_id='.$row['it_id'];
+ ?>
+
+ |
+
+ =get_it_image($row['it_id'].'_s', 40, 40)?>
+ =cut_str(stripslashes($row['it_name']), 60, "
")?>
+
+ |
+ =($row['it_use']?"사용":"미사용")?> |
+ "> |
+
+
+ }
+ if ($i == 0)
+ echo '
| 자료가 없습니다. |
';
+ ?>
+
+
-
+
-//=subtitle($g4['title']);?>
-
- |
-
- | 상품명 |
- 사용구분 |
- 삭제 |
-
- |
- |
-
-
-$sql = " select b.it_id, b.it_name, b.it_use from {$g4['shop_event_item_table']} a
- left join {$g4['shop_item_table']} b on (a.it_id=b.it_id)
- where a.ev_id = '$ev_id'
- order by b.it_id desc ";
-$result = sql_query($sql);
-for ($i=0; $row=sql_fetch_array($result); $i++)
-{
- $href = G4_SHOP_URL."/item.php?it_id={$row['it_id']}";
-
- echo "
-
- | ".get_it_image($row['it_id'].'_s', 40, 40)." |
- ".cut_str(stripslashes($row['it_name']), 60, "
")." |
- ".($row['it_use']?"사용":"미사용")." |
- ".icon("삭제", "javascript:del('./itemeventwindel.php?ev_id=$ev_id&it_id={$row['it_id']}');")." |
- ";
-}
-
-if ($i == 0)
- echo " | 자료가 한건도 없습니다. | ";
-?>
-
- |
-
-
- |
+
+
+
include_once(G4_PATH.'/tail.sub.php');
diff --git a/css/admin.css b/css/admin.css
index 5eb528f10..e3a0ef218 100644
--- a/css/admin.css
+++ b/css/admin.css
@@ -144,6 +144,12 @@ fieldset .btn_submit:focus {height:21px;background:#555;line-height:1.7em}
.btn_frmline:hover,
.btn_frmline:active {text-decoration:none}
+.btn_win {clear:both;margin-bottom:20px;text-align:center} /* 새창용 */
+.btn_win a,
+.btn_win button {display:inline-block;padding:0 10px;height:22px;border:1px solid #ccc;background:#fafafa;line-height:2em}
+.btn_win a:focus,
+.btn_win a:hover {text-decoration:none}
+
.btn_list input,
.btn_list button {padding:0 15px;height:28px;border:0;background:#617d46;color:#fff;line-height:2.2em;vertical-align:middle}
.btn_list input:focus,