Rewrite: In url_to_postid(), bail early if the URL does not belong to the site.

Props ivankristianto, swissspidy, jkhongusc, SergeyBiryukov.
Fixes #39373.

git-svn-id: https://develop.svn.wordpress.org/trunk@41786 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov
2017-10-06 23:28:38 +00:00
parent 944d28b6e4
commit c02645bf13
2 changed files with 22 additions and 0 deletions
+14
View File
@@ -359,6 +359,20 @@ class Tests_Rewrite extends WP_UnitTestCase {
update_option( 'show_on_front', 'posts' );
}
/**
* @ticket 39373
*/
public function test_url_to_postid_should_bail_when_host_does_not_match() {
$this->set_permalink_structure( '/%postname%/' );
$post_id = self::factory()->post->create( array( 'post_name' => 'foo-bar-baz' ) );
$permalink = get_permalink( $post_id );
$url = str_replace( home_url(), 'http://some-other-domain.com', get_permalink( $post_id ) );
$this->assertSame( $post_id, url_to_postid( $permalink ) );
$this->assertSame( 0, url_to_postid( $url ) );
}
/**
* @ticket 21970
*/