diff options
-rw-r--r-- | rt/lib/RT/Interface/Web.pm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/rt/lib/RT/Interface/Web.pm b/rt/lib/RT/Interface/Web.pm index 814a8293f..262aeacde 100644 --- a/rt/lib/RT/Interface/Web.pm +++ b/rt/lib/RT/Interface/Web.pm @@ -1251,8 +1251,9 @@ to handle common problems such as localhost vs 127.0.0.1 =cut sub _NormalizeHost { - - my $uri= URI->new(shift); + my $s = shift; + $s = "http://$s" unless $s =~ /^http/i; + my $uri= URI->new($s); $uri->host('127.0.0.1') if $uri->host eq 'localhost'; return $uri; |