Docs: Add a comment to clarify the `username_exists()` check in `wpmu_validate_blog_signup()`.
Creating a new site that matches an existing user's login name is not allowed, unless it's the user's own username. Follow-up to [https://mu.trac.wordpress.org/changeset/550 mu:550], [https://mu.trac.wordpress.org/changeset/1364 mu:1364]. Props henry.wright, joyously, swissspidy, SergeyBiryukov. Fixes #54326. Built from https://develop.svn.wordpress.org/trunk@52655 git-svn-id: http://core.svn.wordpress.org/trunk@52244 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
eb338bd22d
commit
8de9cdf559
|
@ -682,7 +682,7 @@ function wpmu_validate_blog_signup( $blogname, $blog_title, $user = '' ) {
|
||||||
$errors->add( 'blogname', sprintf( _n( 'Site name must be at least %s character.', 'Site name must be at least %s characters.', $minimum_site_name_length ), number_format_i18n( $minimum_site_name_length ) ) );
|
$errors->add( 'blogname', sprintf( _n( 'Site name must be at least %s character.', 'Site name must be at least %s characters.', $minimum_site_name_length ), number_format_i18n( $minimum_site_name_length ) ) );
|
||||||
}
|
}
|
||||||
|
|
||||||
// Do not allow users to create a blog that conflicts with a page on the main blog.
|
// Do not allow users to create a site that conflicts with a page on the main blog.
|
||||||
if ( ! is_subdomain_install() && $wpdb->get_var( $wpdb->prepare( 'SELECT post_name FROM ' . $wpdb->get_blog_prefix( $current_network->site_id ) . "posts WHERE post_type = 'page' AND post_name = %s", $blogname ) ) ) {
|
if ( ! is_subdomain_install() && $wpdb->get_var( $wpdb->prepare( 'SELECT post_name FROM ' . $wpdb->get_blog_prefix( $current_network->site_id ) . "posts WHERE post_type = 'page' AND post_name = %s", $blogname ) ) ) {
|
||||||
$errors->add( 'blogname', __( 'Sorry, you may not use that site name.' ) );
|
$errors->add( 'blogname', __( 'Sorry, you may not use that site name.' ) );
|
||||||
}
|
}
|
||||||
|
@ -722,6 +722,10 @@ function wpmu_validate_blog_signup( $blogname, $blog_title, $user = '' ) {
|
||||||
$errors->add( 'blogname', __( 'Sorry, that site already exists!' ) );
|
$errors->add( 'blogname', __( 'Sorry, that site already exists!' ) );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Do not allow users to create a site that matches an existing user's login name,
|
||||||
|
* unless it's the user's own username.
|
||||||
|
*/
|
||||||
if ( username_exists( $blogname ) ) {
|
if ( username_exists( $blogname ) ) {
|
||||||
if ( ! is_object( $user ) || ( is_object( $user ) && ( $user->user_login != $blogname ) ) ) {
|
if ( ! is_object( $user ) || ( is_object( $user ) && ( $user->user_login != $blogname ) ) ) {
|
||||||
$errors->add( 'blogname', __( 'Sorry, that site is reserved!' ) );
|
$errors->add( 'blogname', __( 'Sorry, that site is reserved!' ) );
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '6.0-alpha-52654';
|
$wp_version = '6.0-alpha-52655';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue