Changeset 18236


Ignore:
Timestamp:
2009/07/26 01:26:15 (15 years ago)
Author:
AMUAMU
Message:

SC_CartSessionのコンストラクタ引数の間違いを修正
コミュニティにて、bkmrk2009さんより指摘がありました
 http://xoops.ec-cube.net/modules/newbb/viewtopic.php?topic_id=4363&forum=2&post_id=19513

Location:
branches/comu-ver2/data/class/pages
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/comu-ver2/data/class/pages/cart/LC_Page_Cart.php

    r18052 r18236  
    7272 
    7373        $objView = new SC_SiteView(false); 
    74         $objCartSess = new SC_CartSession("", false); 
     74        $objCartSess = new SC_CartSession(); 
    7575        $objSiteSess = new SC_SiteSession(); 
    7676        $objCampaignSess = new SC_CampaignSession(); 
     
    186186 
    187187        $objView = new SC_MobileView(false); 
    188         $objCartSess = new SC_CartSession("", false); 
     188        $objCartSess = new SC_CartSession(); 
    189189        $objSiteSess = new SC_SiteSession(); 
    190190        $objSiteInfo = $objView->objSiteInfo; 
  • branches/comu-ver2/data/class/pages/products/LC_Page_Products_DetailImage.php

    r18234 r18236  
    5454    function process() { 
    5555        $objView = new SC_SiteView(); 
    56         $objCartSess = new SC_CartSession("", false); 
     56        $objCartSess = new SC_CartSession(); 
    5757        $objDb = new SC_Helper_DB_Ex(); 
    5858 
  • branches/comu-ver2/data/class/pages/regist/LC_Page_Regist_Complete.php

    r17969 r18236  
    102102 
    103103        // カートが空かどうかを確認する。 
    104         $objCartSess = new SC_CartSession("", false); 
     104        $objCartSess = new SC_CartSession(); 
    105105        $this->tpl_cart_empty = count($objCartSess->getCartList()) < 1; 
    106106 
Note: See TracChangeset for help on using the changeset viewer.