Don't pass $post_type as get_page()'s $filter argument. Copy-and-paste error. Removal improves get_page_by_path() performance dramatically by stopping sanitize_post() being called. Fixes #19175.

git-svn-id: http://svn.automattic.com/wordpress/trunk@19283 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
duck_ 2011-11-14 21:32:56 +00:00
parent 9c24e72550
commit d17f4409c3
1 changed files with 1 additions and 1 deletions

View File

@ -3181,7 +3181,7 @@ function get_page_by_path($page_path, $output = OBJECT, $post_type = 'page') {
}
if ( $foundid )
return get_page($foundid, $output, $post_type);
return get_page( $foundid, $output );
return null;
}