Commit 8853b3ac37 for wordpress.org

commit 8853b3ac372e373b6679379541e85c695a2ba32f
Author: Sergey Biryukov <sergeybiryukov.ru@gmail.com>
Date:   Sat Dec 6 12:28:29 2025 +0000

    Docs: Add missing parameter descriptions in `wp-admin/install.php`.

    Follow-up to [32654].

    Props rejaulalomkhan.
    See #64224.
    Built from https://develop.svn.wordpress.org/trunk@61356


    git-svn-id: http://core.svn.wordpress.org/trunk@60668 1a063a9b-81f0-0310-95a4-ce76da25c4cd

diff --git a/wp-admin/install.php b/wp-admin/install.php
index 64cb4104c4..1bd34a4973 100644
--- a/wp-admin/install.php
+++ b/wp-admin/install.php
@@ -52,7 +52,7 @@ $step = isset( $_GET['step'] ) ? (int) $_GET['step'] : 0;
  *
  * @since 2.5.0
  *
- * @param string $body_classes
+ * @param string $body_classes Class attribute values for the body tag.
  */
 function display_header( $body_classes = '' ) {
 	header( 'Content-Type: text/html; charset=utf-8' );
@@ -85,7 +85,7 @@ function display_header( $body_classes = '' ) {
  *
  * @global wpdb $wpdb WordPress database abstraction object.
  *
- * @param string|null $error
+ * @param string|null $error Error message to display, if any.
  */
 function display_setup_form( $error = null ) {
 	global $wpdb;
diff --git a/wp-includes/version.php b/wp-includes/version.php
index 4ef8ca0bf8..75c05fe261 100644
--- a/wp-includes/version.php
+++ b/wp-includes/version.php
@@ -16,7 +16,7 @@
  *
  * @global string $wp_version
  */
-$wp_version = '7.0-alpha-61355';
+$wp_version = '7.0-alpha-61356';

 /**
  * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.