From 4cbd2fbc55dba79fa09a70b81d5f9fbfc1b282eb Mon Sep 17 00:00:00 2001 From: Boone Gorges Date: Wed, 23 Sep 2015 14:23:13 +0000 Subject: [PATCH] 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 --- src/wp-includes/ms-functions.php | 1 - 1 file changed, 1 deletion(-) diff --git a/src/wp-includes/ms-functions.php b/src/wp-includes/ms-functions.php index 809d1645a9..e866e6e255 100644 --- a/src/wp-includes/ms-functions.php +++ b/src/wp-includes/ms-functions.php @@ -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' );