From 106da1e9e64a9faa6185c9d329ca19087aed62b5 Mon Sep 17 00:00:00 2001 From: Scott Taylor Date: Sat, 1 Nov 2014 22:03:22 +0000 Subject: [PATCH] In `WP_Meta_Query->get_sql_for_clause()`, the empty initialization of `$where` is dead code and can be removed. See #30224. Built from https://develop.svn.wordpress.org/trunk@30163 git-svn-id: http://core.svn.wordpress.org/trunk@30163 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/meta.php | 1 - wp-includes/version.php | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/wp-includes/meta.php b/wp-includes/meta.php index c3b2d0ebe6..f3415ad663 100644 --- a/wp-includes/meta.php +++ b/wp-includes/meta.php @@ -1381,7 +1381,6 @@ class WP_Meta_Query { $clause['alias'] = $alias; // Next, build the WHERE clause. - $where = ''; // meta_key. if ( array_key_exists( 'key', $clause ) ) { diff --git a/wp-includes/version.php b/wp-includes/version.php index 93ee3e08ce..0ea9d79103 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.1-alpha-30162'; +$wp_version = '4.1-alpha-30163'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.