Fix [9714], it breaks get_page()

git-svn-id: https://develop.svn.wordpress.org/trunk@9731 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Ozz 2008-11-17 15:47:41 +00:00
parent 91a862b1a2
commit 8a364ef5ef

View File

@ -1899,8 +1899,8 @@ function &get_page(&$page, $output = OBJECT, $filter = 'raw') {
}
}
$page = get_post($page, $output, $filter);
return $page;
$the_page = get_post($page, $output, $filter);
return $the_page;
}
/**