diff --git a/wp-content/themes/openlab/js/group-create.js b/wp-content/themes/openlab/js/group-create.js index 222f5d1b4a..a2856e6525 100644 --- a/wp-content/themes/openlab/js/group-create.js +++ b/wp-content/themes/openlab/js/group-create.js @@ -275,7 +275,7 @@ jQuery( document ).ready( } // Check for valid character count. - if ( sitePathEl.value.length < 4 || sitePathEl.value.length > 50 ) { + if ( sitePathEl.value.length < 2 || sitePathEl.value.length > 50 ) { setFormStatus( form, 'invalid', 'Site URL must be between 4 and 50 characters.', sitePathEl ); return; }