Open session for writing when we need it (fixes login/logout)

This commit is contained in:
Albert Santoni 2015-04-10 15:03:25 -04:00
parent 1734cc35c8
commit 095ca86b34
3 changed files with 8 additions and 1 deletions

View file

@ -8,6 +8,8 @@ class LoginController extends Zend_Controller_Action
public function init()
{
//Open the session for writing, because we close it for writing by default in Bootstrap.php as an optimization.
session_start();
}
public function indexAction()