diff options
author | Dylan William Hardison <dylan@hardison.net> | 2018-08-26 08:11:42 +0200 |
---|---|---|
committer | Dylan William Hardison <dylan@hardison.net> | 2018-08-26 08:11:42 +0200 |
commit | 13f4e6bd7522fc0192eb93ce820df9c319f75c86 (patch) | |
tree | 7fdedb5f6efd553683a16490eb57366b508e89b7 | |
parent | 12709134b6fc504fa661e182449dd534ac9ab701 (diff) | |
download | bugzilla-13f4e6bd7522fc0192eb93ce820df9c319f75c86.tar.gz bugzilla-13f4e6bd7522fc0192eb93ce820df9c319f75c86.tar.xz |
remove unneeded difference to bmo
-rw-r--r-- | Bugzilla/CGI.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/CGI.pm b/Bugzilla/CGI.pm index ae997a5fe..2cbb02e3e 100644 --- a/Bugzilla/CGI.pm +++ b/Bugzilla/CGI.pm @@ -704,7 +704,7 @@ sub send_cookie { } # Add the default path and the domain in. - state $uri = Bugzilla->urlbase; + state $uri = URI->new( Bugzilla->localconfig->{urlbase} ); $paramhash{'-path'} = $uri->path; # we don't set the domain. $paramhash{'-secure'} = 1 |