Updating session helper constructor to fix failing tests in Controller::render() integration tests.

This commit is contained in:
mark_story 2010-08-11 00:01:24 -04:00
parent 62d646d168
commit bd89ef533b

View file

@ -31,6 +31,19 @@ if (!class_exists('CakeSession')) {
*/ */
class SessionHelper extends AppHelper { class SessionHelper extends AppHelper {
/**
* Constructor. Starts the session if it has not already been started
*
* @param View $view View instance for this helper
* @param array $settings Settings for the helper.
* @return void
*/
public function __construct(View $view, $settings = array()) {
parent::__construct($view, $settings);
if (!CakeSession::started()) {
CakeSession::start();
}
}
/** /**
* Used to read a session values set in a controller for a key or return values for all keys. * Used to read a session values set in a controller for a key or return values for all keys.
* *