Index: /branches/version-2_11-dev/data/class/pages/admin/order/LC_Page_Admin_Order_Edit.php
===================================================================
--- /branches/version-2_11-dev/data/class/pages/admin/order/LC_Page_Admin_Order_Edit.php	(revision 21004)
+++ /branches/version-2_11-dev/data/class/pages/admin/order/LC_Page_Admin_Order_Edit.php	(revision 21019)
@@ -563,5 +563,5 @@
                 $class_name2 = SC_Utils_Ex::isBlank($class_name2) ? 'なし' : $class_name2;
                 $arrErr['quantity'][$i] .= $arrValues['product_name'][$i]
-                    . '/(' . $class_name1 . ')/(' . $class_name2 . ') の在庫が不足しています。 設定できる数量は「' 
+                    . '/(' . $class_name1 . ')/(' . $class_name2 . ') の在庫が不足しています。 設定できる数量は「'
                     . ($arrOrderDetail['quantity'][$i] + $arrProduct['stock']) . '」までです。<br />';
             }
@@ -581,5 +581,5 @@
 
         // 最終保持ポイント
-        $arrValues['total_point'] = $objFormParam->getValue('custmer_point') - $arrValues['use_point'];
+        $arrValues['total_point'] = $objFormParam->getValue('customer_point') - $arrValues['use_point'];
 
         if ($arrValues['total'] < 0) {
Index: /branches/version-2_11-dev/data/class/helper/SC_Helper_Purchase.php
===================================================================
--- /branches/version-2_11-dev/data/class/helper/SC_Helper_Purchase.php	(revision 21016)
+++ /branches/version-2_11-dev/data/class/helper/SC_Helper_Purchase.php	(revision 21019)
@@ -1119,5 +1119,5 @@
             if ($addCustomerPoint != 0) {
                 // ▼会員テーブルの更新
-                $sqlval = array();
+                $customer_sqlval = array();
                 $where = '';
                 $arrVal = array();
@@ -1125,11 +1125,10 @@
                 $arrRawSqlVal = array();
 
-                $sqlval['update_date'] = 'Now()';
+                $customer_sqlval['update_date'] = 'Now()';
                 $arrRawSql['point'] = 'point + ?';
                 $arrRawSqlVal[] = $addCustomerPoint;
                 $where .= 'customer_id = ?';
                 $arrVal[] = $arrOrderOld['customer_id'];
-
-                $objQuery->update('dtb_customer', $sqlval, $where, $arrVal, $arrRawSql, $arrRawSqlVal);
+                $objQuery->update('dtb_customer', $customer_sqlval, $where, $arrVal, $arrRawSql, $arrRawSqlVal);
                 // ▲会員テーブルの更新
 
