From 6449af2b57090c2a2a1d84f4c96f99d73cb39d56 Mon Sep 17 00:00:00 2001 From: kagla Date: Thu, 14 Apr 2022 16:01:25 +0900 Subject: [PATCH] =?UTF-8?q?=EB=AA=A8=EB=B0=94=EC=9D=BC=EC=97=90=EC=84=9C?= =?UTF-8?q?=EB=8A=94=20=EB=AA=A8=EB=B0=94=EC=9D=BC=20=ED=8E=98=EC=9D=B4?= =?UTF-8?q?=EC=A7=80=EB=8B=B9=20=EB=9D=BC=EC=9D=B8=EC=88=98=EB=A1=9C=20?= =?UTF-8?q?=EC=A0=81=EC=9A=A9=ED=95=98=EB=8F=84=EB=A1=9D=20=EC=88=98?= =?UTF-8?q?=EC=A0=95=20(coDribble=EB=8B=98,220414)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- mobile/shop/itemqalist.php | 2 +- mobile/shop/itemuselist.php | 2 +- mobile/shop/orderinquiry.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/mobile/shop/itemqalist.php b/mobile/shop/itemqalist.php index d03be4e28..23a48f87f 100644 --- a/mobile/shop/itemqalist.php +++ b/mobile/shop/itemqalist.php @@ -40,7 +40,7 @@ $sql = " select count(*) as cnt $row = sql_fetch($sql); $total_count = $row['cnt']; -$rows = $config['cf_page_rows']; +$rows = $config['cf_mobile_page_rows']; $total_page = ceil($total_count / $rows); // 전체 페이지 계산 if ($page < 1) { $page = 1; } // 페이지가 없으면 첫 페이지 (1 페이지) $from_record = ($page - 1) * $rows; // 시작 열을 구함 diff --git a/mobile/shop/itemuselist.php b/mobile/shop/itemuselist.php index d0aa4fdfc..02f32fde5 100644 --- a/mobile/shop/itemuselist.php +++ b/mobile/shop/itemuselist.php @@ -40,7 +40,7 @@ $sql = " select count(*) as cnt $row = sql_fetch($sql); $total_count = $row['cnt']; -$rows = $config['cf_page_rows']; +$rows = $config['cf_mobile_page_rows']; $total_page = ceil($total_count / $rows); // 전체 페이지 계산 if ($page < 1) { $page = 1; } // 페이지가 없으면 첫 페이지 (1 페이지) $from_record = ($page - 1) * $rows; // 시작 열을 구함 diff --git a/mobile/shop/orderinquiry.php b/mobile/shop/orderinquiry.php index 5e5214343..a346ae3a6 100644 --- a/mobile/shop/orderinquiry.php +++ b/mobile/shop/orderinquiry.php @@ -49,7 +49,7 @@ if ($total_count == 0) alert('주문이 존재하지 않습니다.'); } -$rows = $config['cf_page_rows']; +$rows = $config['cf_mobile_page_rows']; $total_page = ceil($total_count / $rows); // 전체 페이지 계산 if ($page < 1) { $page = 1; } // 페이지가 없으면 첫 페이지 (1 페이지) $from_record = ($page - 1) * $rows; // 시작 열을 구함