From ab0ea44dc7673e28c2c01292110cc8dd5f02f96f Mon Sep 17 00:00:00 2001 From: ryan Date: Wed, 6 Feb 2008 18:11:49 +0000 Subject: [PATCH] Page permalink fixes from josephscott. fixes #5781 git-svn-id: http://svn.automattic.com/wordpress/trunk@6737 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/link-template.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/wp-includes/link-template.php b/wp-includes/link-template.php index ac62342aa..4b91b7fde 100644 --- a/wp-includes/link-template.php +++ b/wp-includes/link-template.php @@ -139,6 +139,8 @@ function _get_page_link( $id = false ) { if ( !$id ) $id = (int) $post->ID; + else + $post = &get_post($id); $pagestruct = $wp_rewrite->get_page_permastruct();