From 479b59bdb09ac824d0f2c366f9d90c5a50ae8661 Mon Sep 17 00:00:00 2001 From: Jon Cave Date: Wed, 2 Nov 2011 17:06:34 +0000 Subject: [PATCH] Return full WHERE clause from get_posts_by_author_sql() if the post type isn't registerd. Fixes SQL sytax on users list when 'post' is unregistered. Fixes #19116. git-svn-id: https://develop.svn.wordpress.org/trunk@19117 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/post.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/post.php b/wp-includes/post.php index 19472912d1..923d92ba7f 100644 --- a/wp-includes/post.php +++ b/wp-includes/post.php @@ -4150,7 +4150,7 @@ function get_posts_by_author_sql( $post_type, $full = true, $post_author = null // Private posts $post_type_obj = get_post_type_object( $post_type ); if ( ! $post_type_obj ) - return ' 1 = 0 '; + return $full ? 'WHERE 1 = 0' : ' 1 = 0 '; // This hook is deprecated. Why you'd want to use it, I dunno. if ( ! $cap = apply_filters( 'pub_priv_sql_capability', '' ) )