Fix url breakage

This commit is contained in:
Brian Anderson 2012-08-30 17:55:35 -07:00
parent adf54e6e79
commit f8dd3e38a6

View file

@ -32,7 +32,7 @@ fn make_url(str_url: ~str, current_url: Option<url>) -> url {
let path = path.init();
let path = str::connect(path + ~[copy str_url], "/");
current_url.scheme + "://" + current_url.host + "/" + path
current_url.scheme + "://" + current_url.host + path
}
}
} else {