From 3ad681b2efbf33848980e5880e0dc92cc86ac10c Mon Sep 17 00:00:00 2001 From: Drew Jaynes Date: Sat, 25 Oct 2014 13:38:23 +0000 Subject: [PATCH] Fix an invalid type for the `$section` parameter in the `do_settings_fields()` DocBlock. Props ipm-frommen. See #30098. Built from https://develop.svn.wordpress.org/trunk@30018 git-svn-id: http://core.svn.wordpress.org/trunk@30018 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/includes/template.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-admin/includes/template.php b/wp-admin/includes/template.php index 5304cf809e..dab072b8ba 100644 --- a/wp-admin/includes/template.php +++ b/wp-admin/includes/template.php @@ -1272,7 +1272,7 @@ function do_settings_sections( $page ) { * @since 2.7.0 * * @param string $page Slug title of the admin page who's settings fields you want to show. - * @param section $section Slug title of the settings section who's fields you want to show. + * @param string $section Slug title of the settings section who's fields you want to show. */ function do_settings_fields($page, $section) { global $wp_settings_fields; diff --git a/wp-includes/version.php b/wp-includes/version.php index a4c83be911..fb6387f72b 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.1-alpha-30017'; +$wp_version = '4.1-alpha-30018'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.