Skip to content

Instantly share code, notes, and snippets.

@worenga
Created July 17, 2011 10:24
Show Gist options
  • Save worenga/1087434 to your computer and use it in GitHub Desktop.
Save worenga/1087434 to your computer and use it in GitHub Desktop.
storage:
class: MySessionStorage
param:
session_path: my_session
<?php
class MySessionStorage extends sfSessionStorage
{
public function initialize($options = null)
{
if(sfContext::getInstance()->getRequest()->getParameter('sessionid')) {
session_id(sfContext::getInstance()->getRequest()->getParameter('sessionid'));
}
parent::initialize($options);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment