Don't use php 5 only component parameter to parse_url. Props azaozz. see #6998

git-svn-id: http://svn.automattic.com/wordpress/trunk@7966 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan 2008-05-20 22:26:20 +00:00
parent 47e6a79b98
commit 41c7bca7d0
1 changed files with 2 additions and 2 deletions

View File

@ -104,10 +104,10 @@ function get_images_from_uri($uri) {
if ( false !== strpos($src, '&') )
continue;
$host = parse_url($_GET['u'], PHP_URL_HOST);
$host = parse_url($_GET['u']);
if (strpos($src, 'http://') === false) {
$src = 'http://'.str_replace('//','/', $host.'/'.$src);
$src = 'http://'.str_replace('//','/', $host['host'].'/'.$src);
}
$sources[] = $src;