mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-08-11 12:20:22 +00:00
Pages: get_page_uri() should return the URI at which the resource being accessed is available at, this may include non-'publish' status posts.
Reverts [34001] and fixes the original issue in #15963 - avoiding a PHP Notice for when the post doesn't exist. Props tharsheblows. See #15963. Fixes #35084. git-svn-id: https://develop.svn.wordpress.org/trunk@36094 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -674,8 +674,8 @@ class Tests_Post extends WP_UnitTestCase {
|
||||
// try the child normally
|
||||
$this->assertEquals( 'parent/child', get_page_uri( $child_id ) );
|
||||
|
||||
// now delete the parent and check
|
||||
wp_delete_post( $parent_id );
|
||||
// now delete the parent from the database and check
|
||||
wp_delete_post( $parent_id, true );
|
||||
$this->assertEquals( 'child', get_page_uri( $child_id ) );
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user