From 2aa923a4a86d852749ea3af052d22d95704d52a6 Mon Sep 17 00:00:00 2001 From: chicpro Date: Tue, 17 Mar 2015 14:42:08 +0900 Subject: [PATCH] =?UTF-8?q?=EB=B6=88=ED=95=84=EC=9A=94=ED=95=9C=20?= =?UTF-8?q?=EC=BD=94=EB=93=9C=20=EC=A0=9C=EA=B1=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- mobile/shop/cart.php | 4 ---- 1 file changed, 4 deletions(-) diff --git a/mobile/shop/cart.php b/mobile/shop/cart.php index 15d7fe2f6..22a8c7562 100644 --- a/mobile/shop/cart.php +++ b/mobile/shop/cart.php @@ -17,10 +17,6 @@ $sql = " select a.ct_id, b.ca_id from {$g5['g5_shop_cart_table']} a left join {$g5['g5_shop_item_table']} b on ( a.it_id = b.it_id ) where a.od_id = '$s_cart_id' "; -if($default['de_cart_keep_term']) { - $ctime = date('Y-m-d', G5_SERVER_TIME - ($default['de_cart_keep_term'] * 86400)); - $sql .= " and substring(a.ct_time, 1, 10) >= '$ctime' "; -} $sql .= " group by a.it_id "; $sql .= " order by a.ct_id "; $result = sql_query($sql);