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

Props Viper007Bond.
Fixes #24491.




git-svn-id: https://develop.svn.wordpress.org/trunk@25262 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Scott Taylor 2013-09-05 21:41:48 +00:00
parent ad1feed450
commit eb63aeff1c

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;