Index: branches/version-2_4/data/class/pages/shopping/LC_Page_Shopping_Payment.php
===================================================================
--- branches/version-2_4/data/class/pages/shopping/LC_Page_Shopping_Payment.php	(revision 18104)
+++ branches/version-2_4/data/class/pages/shopping/LC_Page_Shopping_Payment.php	(revision 18155)
@@ -155,4 +155,6 @@
         // 支払い方法の取得
         $this->arrPayment = $this->lfGetPayment($total_pretax);
+        // 支払い方法の画像があるなしを取得（$img_show true:ある false:なし）
+        $this->img_show = $this->lfGetImgShow($this->arrPayment);
         // 配送時間の取得
         $arrRet = $objDb->sfGetDelivTime($this->objFormParam->getValue('payment_id'));
@@ -561,4 +563,16 @@
         return $this->objFormParam;
     }
+
+    /* 支払い方法の画像があるなしを取得（$img_show true:ある false:なし） */
+    function lfGetImgShow($arrPayment) {
+        $img_show = false;
+        foreach ($this->arrPayment as $payment) {
+            if (strlen($payment["payment_image"]) > 0 ){
+                $img_show = true;
+                break;
+            }
+        }
+        return $img_show;
+    }
 }
 ?>
