From 913d54caa010b239a58f1934406bd388f4d6941f Mon Sep 17 00:00:00 2001 From: predominant Date: Wed, 23 Jun 2010 11:33:54 +1000 Subject: [PATCH] Remove __start from SessionHelper --- cake/libs/view/helpers/session.php | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/cake/libs/view/helpers/session.php b/cake/libs/view/helpers/session.php index 5c120eef6f0..4e87f85a7e6 100644 --- a/cake/libs/view/helpers/session.php +++ b/cake/libs/view/helpers/session.php @@ -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; - } }