- Patch #430682 by saxofaan: script didn't work with non-default webserver port.
parent
bb253b0539
commit
03e5798def
|
@ -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'];
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue