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; // 시작 열을 구함