Index: hosting_site.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/hosting/site/hosting_site.module,v
retrieving revision 1.13
diff -u -p -r1.13 hosting_site.module
--- hosting_site.module	22 Aug 2008 17:57:57 -0000	1.13
+++ hosting_site.module	4 Oct 2008 18:35:27 -0000
@@ -233,9 +233,6 @@ function hosting_site_form($node) {
 }
 
 function hosting_site_validate(&$node) {
-  if (!preg_match("/^([\w-]+\.)+[a-z]{2,4}$/i", $node->title ) ) {
-    form_set_error('title', t("You have not specified a valid url for this site."));
-  }
   # TODO: maybe we should allow creation of sites that conflict with HOSTING_SITE_DISABLED (which would then need to be renamed before being re-enabled)
   if (db_result(db_query("SELECT COUNT(n.nid) FROM {node} n JOIN {hosting_site} h ON n.nid = h.nid WHERE type='site' AND title='%s' AND  n.nid <> %d AND h.status & %d", $node->title, $node->nid, ~HOSTING_SITE_DELETED))) {
     form_set_error('title', t("The url you specified is not unique."));
