Browse Source

Bug fixed on cookie.php

Pedro Borges 13 years ago
parent
commit
5742276fe6
1 changed files with 1 additions and 1 deletions
  1. 1 1
      system/cookie.php

+ 1 - 1
system/cookie.php

@@ -72,7 +72,7 @@ class Cookie {
 	 */
 	public static function forget($name)
 	{
-		return static::put($key, null, -60);
+		return static::put($name, null, -60);
 	}
 
 }