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.

git-svn-id: https://develop.svn.wordpress.org/trunk@34455 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Boone Gorges 2015-09-23 14:23:13 +00:00
parent e6b7c6b2d4
commit 4cbd2fbc55

View File

@ -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' );