From 4135870c5218eacc8b1e3ee238df9f0879cf5e26 Mon Sep 17 00:00:00 2001 From: chicpro Date: Mon, 5 Aug 2013 16:45:35 +0900 Subject: [PATCH] =?UTF-8?q?=EC=A3=BC=EC=84=9D=EC=B2=98=EB=A6=AC=ED=96=88?= =?UTF-8?q?=EB=8D=98=20=EC=BD=94=EB=93=9C=20=EC=82=AD=EC=A0=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- shop/event.php | 21 +-------------------- 1 file changed, 1 insertion(+), 20 deletions(-) diff --git a/shop/event.php b/shop/event.php index 2c30c7a52..702ebbb37 100644 --- a/shop/event.php +++ b/shop/event.php @@ -37,25 +37,6 @@ if ($skin) $list_file = G4_SHOP_SKIN_PATH."/{$ev['ev_skin']}"; if (file_exists($list_file)) { - /* - $list_mod = $ev['ev_list_mod']; - $list_row = $ev['ev_list_row']; - $img_width = $ev['ev_img_width']; - $img_height = $ev['ev_img_height']; - - include G4_SHOP_PATH.'/list.sub.php'; - include G4_SHOP_PATH.'/list.sort.php'; - - $sql = $sql_list1 . $sql_common . $sql_list2 . " limit $from_record, $items "; - $result = sql_query($sql); - - include $list_file; - */ - - $list_mod = $ev['ev_list_mod']; - $list_row = $ev['ev_list_row']; - - include G4_SHOP_PATH.'/list.sub.php'; include G4_SHOP_PATH.'/list.sort.php'; // 총몇개 = 한줄에 몇개 * 몇줄 @@ -65,7 +46,7 @@ if (file_exists($list_file)) // 시작 레코드 구함 $from_record = ($page - 1) * $items; - $list = new item_list($ev['ev_skin'], $list_mod, $list_row, $ev['ev_img_width'], $ev['ev_img_height']); + $list = new item_list($ev['ev_skin'], $ev['ev_list_mod'], $ev['ev_list_row'], $ev['ev_img_width'], $ev['ev_img_height']); $list->set_event($ev['ev_id']); $list->set_is_page(true); $list->set_order_by($order_by);