Add check to make sure a valid argument was passed to `get_page_uri()`.

Props Viper007Bond.
Fixes #24491.



Built from https://develop.svn.wordpress.org/trunk@25262


git-svn-id: http://core.svn.wordpress.org/trunk@25230 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Scott Taylor 2013-09-05 21:42:10 +00:00
parent 5cb01f0b9b
commit d1a40562eb
1 changed files with 6 additions and 3 deletions

View File

@ -3597,15 +3597,18 @@ function _page_traverse_name( $page_id, &$children, &$result ){
* @since 1.5.0
*
* @param mixed $page Page object or page ID.
* @return string Page URI.
* @return string|false Page URI, false on error.
*/
function get_page_uri($page) {
function get_page_uri( $page ) {
$page = get_post( $page );
if ( ! $page )
return false;
$uri = $page->post_name;
foreach ( $page->ancestors as $parent ) {
$uri = get_post( $parent )->post_name . "/" . $uri;
$uri = get_post( $parent )->post_name . '/' . $uri;
}
return $uri;