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.