From 55b3ec92f4da532f50d382c9fca4670b10be9352 Mon Sep 17 00:00:00 2001 From: Scott Taylor Date: Fri, 12 Jun 2015 18:35:26 +0000 Subject: [PATCH] Fix some malformed doc blocks in `Custom_Image_Header`. See #32444. Built from https://develop.svn.wordpress.org/trunk@32735 git-svn-id: http://core.svn.wordpress.org/trunk@32706 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/custom-header.php | 4 ++-- wp-includes/version.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/wp-admin/custom-header.php b/wp-admin/custom-header.php index f756968000..9753897ecb 100644 --- a/wp-admin/custom-header.php +++ b/wp-admin/custom-header.php @@ -926,7 +926,7 @@ wp_nonce_field( 'custom-header-options', '_wpnonce-custom-header-options' ); ?> * @since 3.4.0 * * @param array $form_fields - * @return $form_fields + * @return array $form_fields */ public function attachment_fields_to_edit( $form_fields ) { return $form_fields; @@ -938,7 +938,7 @@ wp_nonce_field( 'custom-header-options', '_wpnonce-custom-header-options' ); ?> * @since 3.4.0 * * @param array $tabs - * @return $tabs + * @return array $tabs */ public function filter_upload_tabs( $tabs ) { return $tabs; diff --git a/wp-includes/version.php b/wp-includes/version.php index 4ce73ad542..41e11eba98 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.3-alpha-32734'; +$wp_version = '4.3-alpha-32735'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.