Browse Source

Merge branch 'master' into develop

Taylor Otwell 13 years ago
parent
commit
ce39e48458
2 changed files with 9 additions and 3 deletions
  1. 1 1
      system/cookie.php
  2. 8 2
      system/url.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);
 	}
 
 }

+ 8 - 2
system/url.php

@@ -21,9 +21,15 @@ class URL {
 
 		$base = Config::get('application.url').'/'.Config::get('application.index');
 
-		$base = ($asset) ? str_replace('/'.Config::get('application.index'), '', $base) : $base;
+		if ($asset and Config::get('application.index') !== '')
+		{
+			$base = str_replace('/'.Config::get('application.index'), '', $base);
+		}
 
-		$base = ($https and strpos($base, 'http://') === 0) ? 'https://'.substr($base, 7) : $base;
+		if ($https and strpos($base, 'http://') === 0)
+		{
+			$base = 'https://'.substr($base, 7);
+		}
 
 		return rtrim($base, '/').'/'.ltrim($url, '/');
 	}