]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
fix urlbase in socorro
authorDylan William Hardison <dylan@hardison.net>
Tue, 19 Dec 2017 13:58:38 +0000 (08:58 -0500)
committerDylan William Hardison <dylan@hardison.net>
Tue, 19 Dec 2017 13:59:12 +0000 (08:59 -0500)
Bugzilla.pm
Bugzilla/Template.pm

index 3b0cab94bf6831bdd02ad34c934f4f56b2d472a0..b9e59e390dbf1cc4fb41e3caa3435df18ca6c31d 100644 (file)
@@ -20,7 +20,7 @@ BEGIN {
     }
 }
 
-our $VERSION = '20171219.1';
+our $VERSION = '20171219.2';
 
 use Bugzilla::Auth;
 use Bugzilla::Auth::Persist::Cookie;
index 206f2f3cb5747f67555e8e9ea06027623b28a177..c91b6470c9d68d346730c9ef76f50b01d30eab39 100644 (file)
@@ -1138,7 +1138,7 @@ sub create {
 
                 return '' unless @sigs;
                 # use a URI object to encode the query string part.
-                my $uri = URI->new(correct_urlbase() . 'static/metricsgraphics/socorro-lens.html');
+                my $uri = URI->new(Bugzilla->localconfig->{urlbase} . 'static/metricsgraphics/socorro-lens.html');
                 $uri->query_form('s' => join("\\", @sigs));
                 return $uri;
             },