Skip to content

Commit

Permalink
Remove __start from SessionHelper
Browse files Browse the repository at this point in the history
  • Loading branch information
predominant authored and markstory committed Jul 28, 2010
1 parent 04b67e5 commit 913d54c
Showing 1 changed file with 0 additions and 15 deletions.
15 changes: 0 additions & 15 deletions cake/libs/view/helpers/session.php
Expand Up @@ -116,19 +116,4 @@ public function flash($key = 'flash') {
public function valid() {
return CakeSession::valid();
}

/**
* Determine if Session has been started
* and attempt to start it if not
*
* @return boolean true if Session is already started, false if
* Session could not be started
* @access private
*/
protected function __start() {
if (!$this->started()) {
return $this->start();
}
return true;
}
}

0 comments on commit 913d54c

Please sign in to comment.