Browse Source

Merge pull request #32 from pedroborges/master

Bug fixed on cookie.php
Taylor Otwell 13 years ago
parent
commit
6b77cc984e
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);
 	}
 
 }