Index: /branches/dev/html/admin/products/review_edit.php
===================================================================
--- /branches/dev/html/admin/products/review_edit.php	(revision 304)
+++ /branches/dev/html/admin/products/review_edit.php	(revision 354)
@@ -57,13 +57,7 @@
 //¾¦ÉÊ¤´¤È¤Î¥ì¥Ó¥å¡¼É½¼¨¿ô¼èÆÀ
 $count = $objQuery->count("dtb_review", "del_flg=0 AND status=1 AND product_id=?", array($objPage->arrReview['product_id']));
-//¥ì¥Ó¥å¡¼É½¼¨¿ô¤¬ÀßÄêÃÍ°Ê¾å¤Î¾ì¹ç
-if ($count >= REVIEW_REGIST_MAX){
-	//É½¼¨¤ÏÁªÂò¤Ç¤­¤Ê¤¤
-	$objPage->tpl_status_change = false;
-}else{
-	//Î¾ÊýÁªÂò²ÄÇ½
-	$objPage->tpl_status_change = true;
-}
-					
+//Î¾ÊýÁªÂò²ÄÇ½
+$objPage->tpl_status_change = true;
+
 switch($_POST['mode']) {
 //ÅÐÏ¿
@@ -72,16 +66,10 @@
 	$arrReview = lfConvertParam($_POST, $arrRegistColumn);
 	$objPage->arrErr = lfCheckError($arrReview);
-	//ÈóÉ½¼¨¤«¤éÉ½¼¨¤Ë¥¹¥Æ¡¼¥¿¥¹¤òÀÚ¤êÂØ¤¨¤Æ¡¢¾¦ÉÊ¤´¤È¤ÎÉ½¼¨¥ì¥Ó¥å¡¼¿ô¤¬ÀßÄêÃÍ¤òÄ¶¤¨¤Æ¤¤¤ë¤È¤­
-	if ($arrReview['pre_status'] == '2' && $arrReview['status'] == '1' && $count >= REVIEW_REGIST_MAX){
-		$objPage->arrErr['status'] = '¢¨ ¥ì¥Ó¥å¡¼É½¼¨¿ô¤Ï5·ï¤Þ¤Ç¤Ç¤¹¡£';
+	//¥¨¥é¡¼Ìµ¤·
+	if (!$objPage->arrErr){
+		//¥ì¥Ó¥å¡¼¾ðÊó¤ÎÊÔ½¸ÅÐÏ¿
+		lfRegistReviewData($arrReview, $arrRegistColumn);
 		$objPage->arrReview = $arrReview;
-	} else {
-		//¥¨¥é¡¼Ìµ¤·
-		if (!$objPage->arrErr){
-			//¥ì¥Ó¥å¡¼¾ðÊó¤ÎÊÔ½¸ÅÐÏ¿
-			lfRegistReviewData($arrReview, $arrRegistColumn);
-			$objPage->arrReview = $arrReview;
-			$objPage->tpl_onload = "confirm('ÅÐÏ¿¤¬´°Î»¤·¤Þ¤·¤¿¡£');";
-		}
+		$objPage->tpl_onload = "confirm('ÅÐÏ¿¤¬´°Î»¤·¤Þ¤·¤¿¡£');";
 	}
 	break;
Index: /branches/dev/html/products/detail.php
===================================================================
--- /branches/dev/html/products/detail.php	(revision 17)
+++ /branches/dev/html/products/detail.php	(revision 354)
@@ -421,5 +421,5 @@
 	$col = "create_date, reviewer_url, reviewer_name, recommend_level, title, comment";
 	$from = "dtb_review";
-	$where = "del_flg = 0 AND status = 1 AND product_id = ? ";
+	$where = "del_flg = 0 AND status = 1 AND product_id = ? ORDER BY create_date DESC LIMIT " . REVIEW_REGIST_MAX;
 	$arrval[] = $id;
 	$arrReview = $objQuery->select($col, $from, $where, $arrval);
