Browse Source

Refactoring the cookie class.

Taylor Otwell 13 years ago
parent
commit
bc51ec3d83
1 changed files with 1 additions and 4 deletions
  1. 1 4
      system/cookie.php

+ 1 - 4
system/cookie.php

@@ -56,10 +56,7 @@ class Cookie {
 	 */
 	 */
 	public static function put($name, $value, $minutes = 0, $path = '/', $domain = null, $secure = false, $http_only = false)
 	public static function put($name, $value, $minutes = 0, $path = '/', $domain = null, $secure = false, $http_only = false)
 	{
 	{
-		if ($minutes < 0)
-		{
-			unset($_COOKIE[$name]);
-		}
+		if ($minutes < 0) unset($_COOKIE[$name]);
 
 
 		return setcookie($name, $value, ($minutes != 0) ? time() + ($minutes * 60) : 0, $path, $domain, $secure, $http_only);
 		return setcookie($name, $value, ($minutes != 0) ? time() + ($minutes * 60) : 0, $path, $domain, $secure, $http_only);
 	}
 	}