diff options
author | Bharat Mediratta <bharat@menalto.com> | 2009-06-30 20:47:51 -0700 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2009-06-30 20:47:51 -0700 |
commit | 666c807fccf4f360fac667e9a7ab6b7e560b3a6c (patch) | |
tree | cc6f193ee5700d39f75904a38764f355d95053a2 /system/libraries/Session.php | |
parent | 0b34ec4e8b1f97db0dc6807bdb3a5ece8e1b83e4 (diff) |
Revert "Add Session::abort_save() to Kohana."
Obsoleted by upstream fix.
This reverts commit 06f066164f60fe0babbc7a480e6319a0702e0c46.
Diffstat (limited to 'system/libraries/Session.php')
-rw-r--r-- | system/libraries/Session.php | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/system/libraries/Session.php b/system/libraries/Session.php index 61a0d403..e03f5dff 100644 --- a/system/libraries/Session.php +++ b/system/libraries/Session.php @@ -27,9 +27,6 @@ class Session_Core { // Input library protected $input; - // Automatically save the session by default - public static $should_save = true; - /** * Singleton instance of Session. */ @@ -458,14 +455,4 @@ class Session_Core { } } - /** - * Do not save this session. - * - * @return void - */ - public function abort_save() { - Session::$should_save = false; - - } - } // End Session Class |