From 9d7a685a205898fe470efbb28e4b905eba4c1e94 Mon Sep 17 00:00:00 2001 From: Boone Gorges Date: Wed, 23 Sep 2015 14:24:24 +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. Built from https://develop.svn.wordpress.org/trunk@34455 git-svn-id: http://core.svn.wordpress.org/trunk@34419 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/ms-functions.php | 1 - wp-includes/version.php | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/wp-includes/ms-functions.php b/wp-includes/ms-functions.php index 809d1645a9..e866e6e255 100644 --- a/wp-includes/ms-functions.php +++ b/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' ); diff --git a/wp-includes/version.php b/wp-includes/version.php index cecbb45fbd..c7ae762dfe 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -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.