Index: /branches/version-2_12-dev/data/class/helper/SC_Helper_Purchase.php
===================================================================
--- /branches/version-2_12-dev/data/class/helper/SC_Helper_Purchase.php	(revision 21662)
+++ /branches/version-2_12-dev/data/class/helper/SC_Helper_Purchase.php	(revision 21664)
@@ -575,5 +575,5 @@
      */
     function getPaymentsByPaymentsId($payment_id) {
-		$objQuery =& SC_Query_Ex::getSingletonInstance();
+        $objQuery =& SC_Query_Ex::getSingletonInstance();
         $where = 'payment_id = ? AND del_flg = 0';
         $arrValues = array($payment_id);
Index: /branches/version-2_12-dev/data/class/SC_Display.php
===================================================================
--- /branches/version-2_12-dev/data/class/SC_Display.php	(revision 21649)
+++ /branches/version-2_12-dev/data/class/SC_Display.php	(revision 21664)
@@ -104,9 +104,9 @@
         switch ($device) {
             case DEVICE_TYPE_MOBILE:
-				if (USE_MOBILE === false) {
-					exit;
+                if (USE_MOBILE === false) {
+                    exit;
                 }
-				$this->response->setContentType('text/html');
-				$this->setView(new SC_MobileView_Ex());
+                $this->response->setContentType('text/html');
+                $this->setView(new SC_MobileView_Ex());
                 break;
             case DEVICE_TYPE_SMARTPHONE:
Index: /branches/version-2_12-dev/data/class/pages/shopping/LC_Page_Shopping_Payment.php
===================================================================
--- /branches/version-2_12-dev/data/class/pages/shopping/LC_Page_Shopping_Payment.php	(revision 21654)
+++ /branches/version-2_12-dev/data/class/pages/shopping/LC_Page_Shopping_Payment.php	(revision 21664)
@@ -317,5 +317,5 @@
      */
     function lfCheckError(&$objFormParam, $subtotal, $max_point) {
-		$objPurchase = new SC_Helper_Purchase_Ex();
+        $objPurchase = new SC_Helper_Purchase_Ex();
         // 入力データを渡す。
         $arrForm =  $objFormParam->getHashArray();
@@ -340,10 +340,9 @@
                 $objErr->arrErr['use_point'] = '※ ご利用ポイントがご購入金額を超えています。<br>';
             }
-			// ポイント差し引き後の決済方法チェック
-			$arrPayments = $objPurchase->getPaymentsByPaymentsId($arrForm['payment_id']);
-			if ($arrPayments['rule'] > $subtotal - $arrForm['use_point'] * POINT_VALUE){
+            // ポイント差し引き後の決済方法チェック
+            $arrPayments = $objPurchase->getPaymentsByPaymentsId($arrForm['payment_id']);
+            if ($arrPayments['rule'] > $subtotal - $arrForm['use_point'] * POINT_VALUE) {
                 $objErr->arrErr['use_point'] = '※ 選択した支払方法では、ポイントは'.($subtotal - $arrPayments['rule']).'ポイントまでご利用いただけます。<br>';
             }
-			
         }
         return $objErr->arrErr;
