From f4121923da06501565250a4e4fd382af3307ee48 Mon Sep 17 00:00:00 2001 From: Scott Taylor Date: Mon, 21 Sep 2015 15:18:26 +0000 Subject: [PATCH] Meta Boxes: In `post_categories_meta_box()`, convert some spaces to tabs. Props miyauchi. Fixes #33945. Built from https://develop.svn.wordpress.org/trunk@34364 git-svn-id: http://core.svn.wordpress.org/trunk@34328 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/includes/meta-boxes.php | 6 +++--- wp-includes/version.php | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/wp-admin/includes/meta-boxes.php b/wp-admin/includes/meta-boxes.php index 670e02b5b3..5adfdba39d 100644 --- a/wp-admin/includes/meta-boxes.php +++ b/wp-admin/includes/meta-boxes.php @@ -475,9 +475,9 @@ function post_categories_meta_box( $post, $box ) {
"; // Allows for an empty term set to be sent. 0 is an invalid Term ID and will be ignored by empty() checks. - ?> + $name = ( $tax_name == 'category' ) ? 'post_category' : 'tax_input[' . $tax_name . ']'; + echo ""; // Allows for an empty term set to be sent. 0 is an invalid Term ID and will be ignored by empty() checks. + ?> diff --git a/wp-includes/version.php b/wp-includes/version.php index 861e69d7fc..c9e0dde3e1 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.4-alpha-34363'; +$wp_version = '4.4-alpha-34364'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.