- Patch #430682 by saxofaan: script didn't work with non-default webserver port.

merge-requests/26/head
Dries Buytaert 2009-04-13 12:23:26 +00:00
parent bb253b0539
commit 03e5798def
1 changed files with 1 additions and 1 deletions

View File

@ -250,7 +250,7 @@ function simpletest_script_init() {
// Get url from arguments.
if (!empty($args['url'])) {
$parsed_url = parse_url($args['url']);
$host = $parsed_url['host'];
$host = $parsed_url['host'] . (isset($parsed_url['port']) ? ':' . $parsed_url['port'] : '');
$path = $parsed_url['path'];
}