From 3c39f8351bfea23a31fdbe0219170e566c42f24d Mon Sep 17 00:00:00 2001 From: whitedot Date: Mon, 6 May 2013 17:46:28 +0900 Subject: [PATCH] =?UTF-8?q?=EC=87=BC=ED=95=91=EB=AA=B0:=20#142=20=EC=9D=B4?= =?UTF-8?q?=EB=B2=A4=ED=8A=B8=20=ED=91=9C=EC=A4=80=ED=99=94=20=EB=B0=8F=20?= =?UTF-8?q?=EC=8A=A4=ED=83=80=EC=9D=BC=20=EC=99=84=EB=A3=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- css/default_shop.css | 4 ++++ shop/event.php | 33 +++++++++++---------------------- 2 files changed, 15 insertions(+), 22 deletions(-) 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'); ?>