Browse Source

strip all whitespace from $domain, an accidental space breaks quite some
things (#1533795)

Thijs Kinkhorst 18 years ago
parent
commit
50ef8d1d90
1 changed files with 1 additions and 1 deletions
  1. 1 1
      config/conf.pl

+ 1 - 1
config/conf.pl

@@ -1131,7 +1131,7 @@ sub command11 {
     if ( $new_domain eq "\n" ) {
         $new_domain = $domain;
     } else {
-        $new_domain =~ s/[\r\n]//g;
+        $new_domain =~ s/\s//g;
     }
     return $new_domain;
 }