Changeset 8420 for temp


Ignore:
Timestamp:
2006/11/17 09:14:09 (20 years ago)
Author:
kakinaka
Message:

blank

Location:
temp/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • temp/trunk/data/class/SC_CartSession.php

    r8414 r8420  
    1212     
    1313    /* ¥³¥ó¥¹¥È¥é¥¯¥¿ */ 
    14     function SC_CartSession($key = 'cart') { 
     14    function SC_CartSession($key = 'cart', $url = true) { 
    1515        sfDomainSessionStart(); 
     16         
     17        if($key == "") $key = "cart"; 
    1618        $this->key = $key; 
     19         
     20        if($url){ 
     21            $this->setPrevURL($_SERVER['REQUEST_URI']); 
     22        } 
    1723    } 
    1824     
  • temp/trunk/html/cart/index.php

    r8417 r8420  
    2525$objPage = new LC_Page(); 
    2626$objView = new SC_SiteView(); 
    27 $objCartSess = new SC_CartSession(); 
     27$objCartSess = new SC_CartSession("", false); 
    2828$objSiteSess = new SC_SiteSession(); 
    2929$objSiteInfo = $objView->objSiteInfo; 
  • temp/trunk/html/index.php

    r8416 r8420  
    2020$conn = new SC_DBConn(); 
    2121$objCartSess = new SC_CartSession(); 
    22 $objCartSess->setPrevURL($_SERVER['REQUEST_URI']); 
    2322 
    2423// ¥ì¥¤¥¢¥¦¥È¥Ç¥¶¥¤¥ó¤ò¼èÆÀ 
Note: See TracChangeset for help on using the changeset viewer.