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" );
