Browse Source

Fix slash bug in url class.

Taylor Otwell 13 years ago
parent
commit
77331efc9d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      system/url.php

+ 1 - 1
system/url.php

@@ -25,7 +25,7 @@ class URL {
 
 		$base = ($https and strpos($base, 'http://') === 0) ? 'https://'.substr($base, 7) : $base;
 
-		return $base.'/'.ltrim($url, '/');
+		return rtrim($base, '/').'/'.ltrim($url, '/');
 	}
 
 	/**