Index: temp/trunk/html/admin/products/index.php
===================================================================
--- temp/trunk/html/admin/products/index.php	(revision 10299)
+++ temp/trunk/html/admin/products/index.php	(revision 10306)
@@ -272,7 +272,5 @@
 
 			// ¼èÆÀÈÏ°Ï¤Î»ØÄê(³«»Ï¹ÔÈÖ¹æ¡¢¹Ô¿ô¤Î¥»¥Ã¥È)
-			if(DB_TYPE != "mysql"){
-				$objQuery->setlimitoffset($page_max, $startno);
-			}
+			if(DB_TYPE != "mysql") $objQuery->setlimitoffset($page_max, $startno);
 			// É½¼¨½ç½ø
 			$objQuery->setorder($order);
Index: temp/trunk/html/admin/products/product_select.php
===================================================================
--- temp/trunk/html/admin/products/product_select.php	(revision 10304)
+++ temp/trunk/html/admin/products/product_select.php	(revision 10306)
@@ -96,11 +96,11 @@
 	
 	// ¼èÆÀÈÏ°Ï¤Î»ØÄê(³«»Ï¹ÔÈÖ¹æ¡¢¹Ô¿ô¤Î¥»¥Ã¥È)
-	$objQuery->setlimitoffset($page_max, $startno);
-
+	if(DB_TYPE != "mysql") $objQuery->setlimitoffset($page_max, $startno);
+	// É½¼¨½ç½ø
+	$objQuery->setorder($order);
+	
 	// view¤â¹Ê¹þ¤ß¤ò¤«¤±¤ë(mysqlÍÑ)
 	sfViewWhere("&&noncls_where&&", $where, $arrval, $objQuery->order . " " .  $objQuery->setlimitoffset($page_max, $startno, true));
-
-	// É½¼¨½ç½ø
-	$objQuery->setorder($order);
+	
 	// ¸¡º÷·ë²Ì¤Î¼èÆÀ
 	$objPage->arrProducts = $objQuery->select($col, $from, $where, $arrval);
