Browse Source

fix glob problem in file cache driver.

Taylor Otwell 13 years ago
parent
commit
471b7aaa81
1 changed files with 5 additions and 1 deletions
  1. 5 1
      laravel/session/drivers/file.php

+ 5 - 1
laravel/session/drivers/file.php

@@ -71,7 +71,11 @@ class File implements Driver, Sweeper {
 	 */
 	public function sweep($expiration)
 	{
-		foreach (glob($this->path.'*') as $file)
+		$files = glob($this->path.'*');
+
+		if ($files === false) return;
+
+		foreach ($files as $file)
 		{
 			if (filetype($file) == 'file' and filemtime($file) < $expiration)
 			{