From cd3eb95ed1f3dc3e04cfc2b3b405f75b3ab086da Mon Sep 17 00:00:00 2001 From: Ivan Kohler Date: Sat, 30 Jun 2012 00:53:01 -0700 Subject: [PATCH] fix dev operation @ localhost, RT#13852 --- rt/lib/RT/Interface/Web.pm | 5 +++-- 1 file 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; -- 2.11.0