From 74e0d8ba54b3730b387a48a8125ab1f58180760e Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Thu, 25 Feb 2021 12:02:03 +0000 Subject: [PATCH] Docs: Correct function name in `add_settings_field()` DocBlock. See #52628. Built from https://develop.svn.wordpress.org/trunk@50434 git-svn-id: http://core.svn.wordpress.org/trunk@50045 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 746be839af..c3dd095d64 100644 --- a/wp-admin/includes/template.php +++ b/wp-admin/includes/template.php @@ -1592,7 +1592,7 @@ function add_settings_section( $id, $title, $callback, $page ) { * * Part of the Settings API. Use this to define a settings field that will show * as part of a settings section inside a settings page. The fields are shown using - * do_settings_fields() in do_settings-sections() + * do_settings_fields() in do_settings_sections(). * * The $callback argument should be the name of a function that echoes out the * HTML input tags for this setting field. Use get_option() to retrieve existing diff --git a/wp-includes/version.php b/wp-includes/version.php index 9785db73f6..6fe449ed85 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.8-alpha-50433'; +$wp_version = '5.8-alpha-50434'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.