Formatting: wp_make_link_relative() should return an empty string if no path is present in the link.

Props bcworkz, MikeHansenMe, chriscct7, SergeyBiryukov.
Fixes #26819.

git-svn-id: https://develop.svn.wordpress.org/trunk@35497 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov
2015-11-03 21:35:17 +00:00
parent b077aecd6a
commit 88c274fad8
3 changed files with 48 additions and 31 deletions

View File

@@ -3621,7 +3621,7 @@ function tag_escape( $tag_name ) {
* @return string Absolute path.
*/
function wp_make_link_relative( $link ) {
return preg_replace( '|^(https?:)?//[^/]+(/.*)|i', '$2', $link );
return preg_replace( '|^(https?:)?//[^/]+(/?.*)|i', '$2', $link );
}
/**