From a6c0a5f2dacea8da6a62d34e36009702278e54aa Mon Sep 17 00:00:00 2001 From: chicpro Date: Thu, 20 Feb 2014 13:04:52 +0900 Subject: [PATCH] =?UTF-8?q?=EC=82=AC=EC=9A=A9=ED=95=98=EC=A7=80=20?= =?UTF-8?q?=EC=95=8A=EB=8A=94=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 --- lib/shop.lib.php | 23 ----------------------- mobile/shop/orderformupdate.php | 8 -------- mobile/shop/personalpayformupdate.php | 8 -------- shop/orderformupdate.php | 9 --------- shop/personalpayformupdate.php | 8 -------- 5 files changed, 56 deletions(-) diff --git a/lib/shop.lib.php b/lib/shop.lib.php index fbf99a017..8e17dce38 100644 --- a/lib/shop.lib.php +++ b/lib/shop.lib.php @@ -1469,29 +1469,6 @@ function get_coupon_id() } -// array_map() 대체 -function array_add_callback($func, $array) -{ - if(!$func) { - return; - } - - if(is_array($array)) { - foreach($array as $key => $value) { - if(is_array($value)) { - $array[$key] = array_add_callback($func, $value); - } else { - $array[$key] = call_user_func($func, $value); - } - } - } else { - $array = call_user_func($func, $array); - } - - return $array; -} - - // 주문의 금액, 배송비 과세금액 등의 정보를 가져옴 function get_order_info($od_id) { diff --git a/mobile/shop/orderformupdate.php b/mobile/shop/orderformupdate.php index 04df26e09..3786fd4ea 100644 --- a/mobile/shop/orderformupdate.php +++ b/mobile/shop/orderformupdate.php @@ -1,14 +1,6 @@