Commit c6e76c3c5b for wordpress.org

commit c6e76c3c5b1bd6ebdfbe3c24169b3765cf40ac6f
Author: Sergey Biryukov <sergeybiryukov.ru@gmail.com>
Date:   Mon Nov 18 23:38:20 2024 +0000

    Users: Correct “Add New User” page reference on Network Settings screen.

    Follow-up to [56515].

    Props timse201.
    Fixes #62458.
    Built from https://develop.svn.wordpress.org/trunk@59417


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

diff --git a/wp-admin/network/settings.php b/wp-admin/network/settings.php
index a8504e4b27..c93d98a169 100644
--- a/wp-admin/network/settings.php
+++ b/wp-admin/network/settings.php
@@ -250,7 +250,7 @@ if ( isset( $_GET['updated'] ) ) {
 			<tr id="addnewusers">
 				<th scope="row"><?php _e( 'Add New Users' ); ?></th>
 				<td>
-					<label><input name="add_new_users" type="checkbox" id="add_new_users" value="1"<?php checked( get_site_option( 'add_new_users' ) ); ?> /> <?php _e( 'Allow site administrators to add new users to their site via the "Users &rarr; Add New" page' ); ?></label>
+					<label><input name="add_new_users" type="checkbox" id="add_new_users" value="1"<?php checked( get_site_option( 'add_new_users' ) ); ?> /> <?php _e( 'Allow site administrators to add new users to their site via the "Users &rarr; Add New User" page' ); ?></label>
 				</td>
 			</tr>

diff --git a/wp-includes/version.php b/wp-includes/version.php
index d90bf1cb8d..c159709d2a 100644
--- a/wp-includes/version.php
+++ b/wp-includes/version.php
@@ -16,7 +16,7 @@
  *
  * @global string $wp_version
  */
-$wp_version = '6.8-alpha-59416';
+$wp_version = '6.8-alpha-59417';

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