use homeurl(), props PeteMall, see #9008

git-svn-id: https://develop.svn.wordpress.org/trunk@14429 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ron Rennick
2010-05-04 00:28:29 +00:00
parent 56e95f24c5
commit c2b89e7330
4 changed files with 5 additions and 5 deletions

View File

@@ -251,7 +251,7 @@ class WP_Http {
$r['ssl'] = $arrURL['scheme'] == 'https' || $arrURL['scheme'] == 'ssl';
// Determine if this request is to OUR install of WordPress
$homeURL = parse_url(get_bloginfo('url'));
$homeURL = home_url();
$r['local'] = $homeURL['host'] == $arrURL['host'] || 'localhost' == $arrURL['host'];
unset($homeURL);