Browse Source

fix cookie bug.

Taylor Otwell 13 years ago
parent
commit
2504f8693f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      laravel/cookie.php

+ 1 - 1
laravel/cookie.php

@@ -72,7 +72,7 @@ class Cookie {
 	 */
 	 */
 	public static function get($name, $default = null)
 	public static function get($name, $default = null)
 	{
 	{
-		if (isset(static::$jar[$name])) return static::$jar[$name];
+		if (isset(static::$jar[$name])) return static::$jar[$name]['value'];
 
 
 		$value = array_get($_COOKIE, $name);
 		$value = array_get($_COOKIE, $name);