Ignore:
Timestamp:
2009/12/04 09:58:19 (14 years ago)
Author:
kajiwara
Message:

#517 ログアウト後にお客様情報がクリアされない(及び商品情報もクリアされない)不具合を修正いたしました。(商品購入を途中で中断した場合などに事象が発生します。)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_4/data/class/SC_Customer.php

    r17732 r18420  
    225225        // $_SESSION['customer']の解放 
    226226        unset($_SESSION['customer']); 
     227        $objSiteSess = new SC_SiteSession(); 
     228        $objCartSess = new SC_CartSession(); 
     229        $objSiteSess->unsetUniqId(); 
     230        $objCartSess->delAllProducts(); 
    227231        // ログに記録する 
    228232        GC_Utils_Ex::gfPrintLog("logout : user=".$this->customer_data['customer_id'] ."\t"."ip=". $this->getRemoteHost(), CUSTOMER_LOG_PATH ); 
Note: See TracChangeset for help on using the changeset viewer.