Browse Source

fix cache::remember method with closures.

Taylor Otwell 13 years ago
parent
commit
bd532ee4b0
1 changed files with 1 additions and 1 deletions
  1. 1 1
      laravel/cache/drivers/driver.php

+ 1 - 1
laravel/cache/drivers/driver.php

@@ -74,7 +74,7 @@ abstract class Driver {
 	{
 		if ( ! is_null($item = $this->get($key, null))) return $item;
 
-		$this->put($key, value($default), $minutes);
+		$this->put($key, $default = value($default), $minutes);
 
 		return $default;
 	}