예제 #1
0
파일: Session.php 프로젝트: relue/magento2
 /**
  * Reset core session hosts after reseting session ID
  *
  * @return Mage_Customer_Model_Session
  */
 public function renewSession()
 {
     parent::renewSession();
     Mage::getSingleton('Mage_Core_Model_Session')->unsSessionHosts();
     return $this;
 }
예제 #2
0
 /**
  * Reset core session hosts after reseting session ID
  *
  * @return Mage_Customer_Model_Session
  */
 public function renewSession()
 {
     parent::renewSession();
     Mage::getSingleton('core/session')->unsSessionHosts();
     return $this;
 }
예제 #3
0
 /**
  * Reset core session hosts after reseting session ID
  *
  * @return Mage_Customer_Model_Session
  */
 public function renewSession()
 {
     parent::renewSession();
     $this->_cleanHosts();
     return $this;
 }