Browse Source

Refactor the file session driver.

Taylor Otwell 13 years ago
parent
commit
f470796261
1 changed files with 2 additions and 8 deletions
  1. 2 8
      system/session/file.php

+ 2 - 8
system/session/file.php

@@ -10,10 +10,7 @@ class File implements Driver, Sweeper {
 	 */
 	 */
 	public function load($id)
 	public function load($id)
 	{
 	{
-		if (file_exists($path = SESSION_PATH.$id))
-		{
-			return unserialize(file_get_contents($path));
-		}
+		if (file_exists($path = SESSION_PATH.$id)) return unserialize(file_get_contents($path));
 	}
 	}
 
 
 	/**
 	/**
@@ -48,10 +45,7 @@ class File implements Driver, Sweeper {
 	{
 	{
 		foreach (glob(SESSION_PATH.'*') as $file)
 		foreach (glob(SESSION_PATH.'*') as $file)
 		{
 		{
-			if (filetype($file) == 'file' and filemtime($file) < $expiration)
-			{
-				@unlink($file);
-			}			
+			if (filetype($file) == 'file' and filemtime($file) < $expiration) @unlink($file);
 		}
 		}
 	}
 	}