Ticket #31417: patch-31417.diff
File patch-31417.diff, 510 bytes (added by , 10 years ago) |
---|
-
tests/phpunit/includes/testcase.php
333 333 } 334 334 $parts = parse_url($url); 335 335 if (isset($parts['scheme'])) { 336 $req = $parts['path'];336 $req = isset( $parts['path'] ) ? $parts['path'] : ''; 337 337 if (isset($parts['query'])) { 338 338 $req .= '?' . $parts['query']; 339 339 // parse the url query vars into $_GET