summaryrefslogtreecommitdiffstats
path: root/Bugzilla
diff options
context:
space:
mode:
authorDylan William Hardison <dylan@hardison.net>2018-10-02 22:22:19 +0200
committerdklawren <dklawren@users.noreply.github.com>2018-10-02 22:22:19 +0200
commit286637cf16f1b933e8d4e14a4be4ca7123866374 (patch)
tree06d1e5b00245b0fac69f7b4f16fd1bd3eb3847aa /Bugzilla
parentb340e1d0568ea33d15ff59ff48560e78966121e4 (diff)
downloadbugzilla-286637cf16f1b933e8d4e14a4be4ca7123866374.tar.gz
bugzilla-286637cf16f1b933e8d4e14a4be4ca7123866374.tar.xz
Bug 1495869 - Crash graph not found after mojo migration
Diffstat (limited to 'Bugzilla')
-rw-r--r--Bugzilla/Template.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/Template.pm b/Bugzilla/Template.pm
index 39272a538..c337b5af8 100644
--- a/Bugzilla/Template.pm
+++ b/Bugzilla/Template.pm
@@ -1029,7 +1029,7 @@ sub create {
return '' unless @sigs;
# use a URI object to encode the query string part.
- my $uri = URI->new(Bugzilla->localconfig->{urlbase} . 'static/metricsgraphics/socorro-lens.html');
+ my $uri = URI->new(Bugzilla->localconfig->{urlbase} . 'metricsgraphics/socorro-lens.html');
$uri->query_form('s' => join("\\", @sigs));
return $uri;
},