Multisite: Don't limit site titles to 50 chars.
This restriction dates from ye olden times, ie https://mu.trac.wordpress.org/changeset/1140. It is no longer relevant. Props chriscct7, theode. Fixes #33973. Built from https://develop.svn.wordpress.org/trunk@34455 git-svn-id: http://core.svn.wordpress.org/trunk@34419 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
a034a3394a
commit
9d7a685a20
|
@ -599,7 +599,6 @@ function wpmu_validate_blog_signup( $blogname, $blog_title, $user = '' ) {
|
|||
$base = $current_site->path;
|
||||
|
||||
$blog_title = strip_tags( $blog_title );
|
||||
$blog_title = substr( $blog_title, 0, 50 );
|
||||
|
||||
$errors = new WP_Error();
|
||||
$illegal_names = get_site_option( 'illegal_names' );
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '4.4-alpha-34454';
|
||||
$wp_version = '4.4-alpha-34455';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue