Return esc_url_raw(), not esc_url(), from get_blogaddress_by_domain(). props tlovett1, fixes #25057. #wcpvd

git-svn-id: https://develop.svn.wordpress.org/trunk@25033 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Nacin 2013-08-16 19:41:59 +00:00
parent 5125650b72
commit a2008aa773
1 changed files with 1 additions and 1 deletions

View File

@ -78,7 +78,7 @@ function get_blogaddress_by_domain( $domain, $path ) {
$url = 'http://' . $domain . $path;
}
}
return esc_url( $url );
return esc_url_raw( $url );
}
/**