Browse Source

Session flush now correctly prepares empty data.

Phill Sparks 13 years ago
parent
commit
1f17629baa
2 changed files with 6 additions and 2 deletions
  1. 2 1
      changelog.md
  2. 4 1
      laravel/session/payload.php

+ 2 - 1
changelog.md

@@ -3,6 +3,7 @@
 ## Version 2.0.5
 
 - Fix: Remove orderings before running pagination queries.
+- Fix: Session flush now correctly prepares empty data.
 
 ### Upgrading from 2.0.4
 
@@ -138,4 +139,4 @@
 
 - Replace the **system** directory.
 - Replace the **application/config/aliases.php** file.
-- Take note of encryption class changes.
+- Take note of encryption class changes.

+ 4 - 1
laravel/session/payload.php

@@ -229,7 +229,10 @@ class Payload {
 	 */
 	public function flush()
 	{
-		$this->session['data'] = array();
+		$this->session['data'] = array(
+			':new:' => array(),
+			':old:' => array(),
+		);
 	}
 
 	/**