Index: branches/version-2_12-dev/data/class/pages/admin/products/LC_Page_Admin_Products_Review.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/admin/products/LC_Page_Admin_Products_Review.php	(revision 21867)
+++ branches/version-2_12-dev/data/class/pages/admin/products/LC_Page_Admin_Products_Review.php	(revision 21913)
@@ -98,4 +98,10 @@
         $this->arrForm = $objFormParam->getHashArray();
         $this->arrHidden = $this->lfSetHidden($this->arrForm);
+		
+		// 入力パラメーターチェック
+		$this->arrErr = $this->lfCheckError($objFormParam);
+		if(!SC_Utils_Ex::isBlank($this->arrErr)) {
+            return;
+        }
 
         switch ($this->getMode()) {
@@ -104,10 +110,9 @@
             case 'search':
             case 'csv':
-                // エラーチェック
-                $this->arrErr = $this->lfCheckError($objFormParam);
-                if (!$this->arrErr) {
-                    // 検索条件を取得
-                    list($where, $arrWhereVal) = $this->lfGetWhere($this->arrForm);
-                }
+                
+				// 検索条件を取得
+				list($where, $arrWhereVal) = $this->lfGetWhere($this->arrForm);
+				// 検索結果を取得
+				$this->arrReview = $this->lfGetReview($this->arrForm, $where, $arrWhereVal);
 
                 //CSVダウンロード
@@ -117,7 +122,5 @@
                     SC_Response_Ex::actionExit();
                 }
-
-                // 検索条件を取得
-                $this->arrReview = $this->lfGetReview($this->arrForm, $where, $arrWhereVal);
+				
                 break;
             default:
Index: branches/version-2_12-dev/data/Smarty/templates/admin/products/review.tpl
===================================================================
--- branches/version-2_12-dev/data/Smarty/templates/admin/products/review.tpl	(revision 21867)
+++ branches/version-2_12-dev/data/Smarty/templates/admin/products/review.tpl	(revision 21913)
@@ -110,5 +110,5 @@
 
 
-<!--{if $smarty.post.mode == 'search'}-->
+<!--{if count($arrErr) == 0 and ($smarty.post.mode == 'search' or $smarty.post.mode == 'delete')}-->
 
 <!--★★検索結果一覧★★-->
