Index: /branches/version-2_12-dev/data/class/pages/admin/order/LC_Page_Admin_Order_Mail.php
===================================================================
--- /branches/version-2_12-dev/data/class/pages/admin/order/LC_Page_Admin_Order_Mail.php	(revision 21820)
+++ /branches/version-2_12-dev/data/class/pages/admin/order/LC_Page_Admin_Order_Mail.php	(revision 21852)
@@ -71,15 +71,15 @@
      */
     function action() {
-
+        $post = $_POST;
         //一括送信用の処理
-        if (array_key_exists('mail_order_id',$_POST) and $_POST['mode'] == 'mail_select'){
-            $_POST['order_id_array'] = implode(',',$_POST['mail_order_id']);
-        } else if(!array_key_exists('order_id_array',$_POST)){
-            $_POST['order_id_array'] = $_POST['order_id'];
+        if (array_key_exists('mail_order_id',$post) and $post['mode'] == 'mail_select'){
+            $post['order_id_array'] = implode(',',$post['mail_order_id']);
+        } else if(!array_key_exists('order_id_array',$post)){
+            $post['order_id_array'] = $post['order_id'];
         }
 
         //一括送信処理変数チェック(ここですべきかは課題)
-        if (preg_match("/^[0-9|\,]*$/",$_POST['order_id_array'])){
-            $this->order_id_array = $_POST['order_id_array'];
+        if (preg_match("/^[0-9|\,]*$/",$post['order_id_array'])){
+            $this->order_id_array = $post['order_id_array'];
         } else {
             //エラーで元に戻す
@@ -87,9 +87,9 @@
             SC_Response_Ex::actionExit();
         }
-
+        
         //メール本文の確認例は初めの1受注とする
-        if ($this->order_id_array){
+        if (!SC_Utils_Ex::isBlank($this->order_id_array)){
             $order_id_array = split(',',$this->order_id_array);
-            $_POST['order_id'] = intval($order_id_array[0]);
+            $post['order_id'] = intval($order_id_array[0]);
             $this->order_id_count = count($order_id_array);
         }
@@ -101,5 +101,5 @@
 
         // POST値の取得
-        $objFormParam->setParam($_POST);
+        $objFormParam->setParam($post);
         $objFormParam->convParam();
         $this->tpl_order_id = $objFormParam->getValue('order_id');
Index: /branches/version-2_12-dev/data/Smarty/templates/admin/order/mail_confirm.tpl
===================================================================
--- /branches/version-2_12-dev/data/Smarty/templates/admin/order/mail_confirm.tpl	(revision 21687)
+++ /branches/version-2_12-dev/data/Smarty/templates/admin/order/mail_confirm.tpl	(revision 21852)
@@ -43,5 +43,5 @@
     
     
-    <!--{if $order_id_count != 1}-->
+    <!--{if $order_id_count > 1}-->
     <span class="red">※本文は1通分の例です。受注情報は各メールごとに異なります</span><br /><br />
     <!--{/if}-->
