Revert "Add Session::abort_save() to Kohana."

Obsoleted by upstream fix.

This reverts commit 06f066164f.
This commit is contained in:
Bharat Mediratta
2009-06-30 20:47:51 -07:00
parent 0b34ec4e8b
commit 666c807fcc
3 changed files with 0 additions and 20 deletions
-13
View File
@@ -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