diff --git a/css/default_shop.css b/css/default_shop.css index 3c89a70c5..a645c7b4a 100644 --- a/css/default_shop.css +++ b/css/default_shop.css @@ -611,3 +611,7 @@ input.required:focus {padding:3px 3px 4px;border:0;background:#21272e !important .ssch_it_img {width:100px;text-align:center} .ssch_it_img img {width:100px;height:100px} #ssch .ssch_num {width:150px;text-align:right} + +/* 쇼핑몰 이벤트 */ +#sev {} +.sev_admin {text-align:right} \ No newline at end of file diff --git a/shop/event.php b/shop/event.php index d2092e19e..3f70bcf96 100644 --- a/shop/event.php +++ b/shop/event.php @@ -11,21 +11,17 @@ if (!$ev['ev_id']) $g4['title'] = $ev['ev_subject']; include_once('./_head.php'); -$himg = G4_DATA_PATH."/event/{$ev_id}_h"; -if (file_exists($himg)) - echo "
"; - if ($is_admin) - echo "

"; + echo '
이벤트 관리
'; + +$himg = G4_DATA_PATH.'/event/'.$ev_id.'_h'; +if (file_exists($himg)) + echo '
'; // 상단 HTML -echo stripslashes($ev['ev_head_html']); +echo '
'.stripslashes($ev['ev_head_html']).'
'; ?> - - - - -
- -
- -
-
-

'.stripslashes($ev['ev_tail_html']).''; -$timg = G4_DATA_PATH."/event/{$ev_id}_t"; +$timg = G4_DATA_PATH.'/event/'.$ev_id.'_t'; if (file_exists($timg)) - echo "

"; + echo '
'; include_once('./_tail.php'); ?>