diff --git a/wp-admin/includes/template.php b/wp-admin/includes/template.php index 3973d80ca0..30e333ec5e 100644 --- a/wp-admin/includes/template.php +++ b/wp-admin/includes/template.php @@ -582,7 +582,7 @@ function _list_meta_row( $entry, &$count ) { static $update_nonce = false; if ( is_protected_meta( $entry['meta_key'], 'post' ) ) - return; + return ''; if ( !$update_nonce ) $update_nonce = wp_create_nonce( 'add-meta' ); @@ -597,7 +597,7 @@ function _list_meta_row( $entry, &$count ) { } else { // This is a serialized array/object so we should NOT display it. --$count; - return; + return ''; } } diff --git a/wp-includes/version.php b/wp-includes/version.php index aa582a5e44..77e4521f71 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.2-alpha-31441'; +$wp_version = '4.2-alpha-31442'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.