Return esc_url_raw(), not esc_url(), from get_blogaddress_by_domain(). props tlovett1, fixes #25057. #wcpvd
Built from https://develop.svn.wordpress.org/trunk@25033 git-svn-id: http://core.svn.wordpress.org/trunk@25020 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
e2c8edc22d
commit
7554176da0
|
@ -78,7 +78,7 @@ function get_blogaddress_by_domain( $domain, $path ) {
|
||||||
$url = 'http://' . $domain . $path;
|
$url = 'http://' . $domain . $path;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return esc_url( $url );
|
return esc_url_raw( $url );
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue