Skip to content

Commit

Permalink
Updating session helper constructor to fix failing tests in Controlle…
Browse files Browse the repository at this point in the history
…r::render() integration tests.
  • Loading branch information
markstory committed Aug 11, 2010
1 parent 62d646d commit bd89ef5
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions cake/libs/view/helpers/session.php
Expand Up @@ -31,6 +31,19 @@
*/
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.
*
Expand Down

0 comments on commit bd89ef5

Please sign in to comment.