Ignore:
Timestamp:
2013/03/06 16:46:31 (11 years ago)
Author:
shutta
Message:

#2174 (商品をカゴに投入してカートに移動すると、開いていたカテゴリーツリーが閉じる)
商品詳細ページから商品をカゴに入れた際、および、カゴの中ページでの数量変更・商品削除の際に、開いているカテゴリーツリーを維持するように修正。

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_12-dev/data/class/pages/products/LC_Page_Products_Detail.php

    r22567 r22608  
    517517            $objCartSess->addProduct($product_class_id, $this->objFormParam->getValue('quantity')); 
    518518 
    519  
    520             SC_Response_Ex::sendRedirect(CART_URLPATH); 
     519            // 開いているカテゴリーツリーを維持するためのパラメーター 
     520            $arrQueryString = array( 
     521                'product_id' => $this->objFormParam->getValue('product_id'), 
     522            ); 
     523 
     524            SC_Response_Ex::sendRedirect(CART_URLPATH, $arrQueryString); 
    521525            SC_Response_Ex::actionExit(); 
    522526        } 
Note: See TracChangeset for help on using the changeset viewer.