Fix [9714], it breaks get_page()

git-svn-id: http://svn.automattic.com/wordpress/trunk@9731 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
azaozz 2008-11-17 15:47:41 +00:00
parent 28af5e2493
commit 7cee4f5723
1 changed files with 2 additions and 2 deletions

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;
}
/**