Index: /temp/trunk/data/class/SC_CustomerList.php
===================================================================
--- /temp/trunk/data/class/SC_CustomerList.php	(revision 2134)
+++ /temp/trunk/data/class/SC_CustomerList.php	(revision 2138)
@@ -245,8 +245,10 @@
 		}
 		
-		$limit = $array['page_rows'];
-		$offset = $array['page_rows'] * ($array['search_pageno'] - 1);
-//		$offset = 0;
-		$this->setLimitOffset($limit, $offset);
+		// É½¼¨·ï¿ôÀßÄê
+		if ($array['page_rows'] > 0) {
+			$limit = $array['page_rows'];
+			$offset = $array['page_rows'] * ($array['search_pageno'] - 1);
+			$this->setLimitOffset($limit, $offset);
+		}
 
 		$this->setOrder( "customer_id DESC" );
Index: /temp/trunk/html/admin/customer/index.php
===================================================================
--- /temp/trunk/html/admin/customer/index.php	(revision 2136)
+++ /temp/trunk/html/admin/customer/index.php	(revision 2138)
@@ -145,4 +145,15 @@
 		//-- ¸¡º÷¥Ç¡¼¥¿¼èÆÀ
 		$objSelect = new SC_CustomerList($objPage->arrForm, "customer");
+		
+		// É½¼¨·ï¿ôÀßÄê
+		$page_rows = $objPage->arrForm['page_rows'];
+		if(is_numeric($page_rows)) {	
+			$page_max = $page_rows;
+		} else {
+			$page_max = SEARCH_PMAX;
+		}
+		$offset = $page_max * ($objPage->arrForm['search_pageno'] - 1);
+		$objSelect->setLimitOffset($page_max, $offset);		
+		
 		if ($_POST["mode"] == 'csv') {
 			$searchSql = $objSelect->getListCSV($arrColumnCSV);
@@ -207,11 +218,5 @@
 			$linemax = $objConn->getOne( $objSelect->getListCount(), $objSelect->arrVal);
 			$objPage->tpl_linemax = $linemax;				// ²¿·ï¤¬³ºÅö¤·¤Þ¤·¤¿¡£É½¼¨ÍÑ
-			
-			// ¥Ú¡¼¥¸Á÷¤ê¤Î½èÍý
-			if(is_numeric($_POST['page_rows'])) {	
-				$page_max = $_POST['page_rows'];
-			} else {
-				$page_max = SEARCH_PMAX;
-			}
+
 			// ¥Ú¡¼¥¸Á÷¤ê¤Î¼èÆÀ
 			$objNavi = new SC_PageNavi($_POST['search_pageno'], $linemax, $page_max, "fnCustomerPage", NAVI_PMAX);
