From 644427dd6373cd87a76a36d38075cc0629b840df Mon Sep 17 00:00:00 2001 From: dd32 Date: Sat, 27 Mar 2010 06:03:58 +0000 Subject: [PATCH] Remove Debug cruft.. See #12704 git-svn-id: http://svn.automattic.com/wordpress/trunk@13839 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/query.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/query.php b/wp-includes/query.php index 51dcc83dc..5e8ffc9be 100644 --- a/wp-includes/query.php +++ b/wp-includes/query.php @@ -2391,7 +2391,7 @@ class WP_Query { $this->request = " SELECT $found_rows $distinct $fields FROM $wpdb->posts $join WHERE 1=1 $where $groupby $orderby $limits"; if ( !$q['suppress_filters'] ) $this->request = apply_filters_ref_array('posts_request', array( $this->request, &$this ) ); -var_Dump($this->request); + $this->posts = $wpdb->get_results($this->request); // Raw results filter. Prior to status checks. if ( !$q['suppress_filters'] )