From a065482fe367839c934f9df5454ccce587a6b506 Mon Sep 17 00:00:00 2001 From: "lpsolit%gmail.com" <> Date: Wed, 8 Oct 2008 00:49:58 +0000 Subject: [PATCH] =?utf8?q?Bug=20458854:=20The=20URL=20to=20the=20dependenc?= =?utf8?q?y=20graph=20is=20wrong=20when=20using=20an=20external=20webdot?= =?utf8?q?=20server=20-=20Patch=20by=20Fr=C3=83=C2=A9d=C3=83=C2=A9ric=20Bu?= =?utf8?q?clin=20=20r=3Djustdave=20a=3DLpSolit?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- showdependencygraph.cgi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/showdependencygraph.cgi b/showdependencygraph.cgi index 327f73c9d3..6f2a95503d 100755 --- a/showdependencygraph.cgi +++ b/showdependencygraph.cgi @@ -247,7 +247,7 @@ my $webdotbase = Bugzilla->params->{'webdotbase'}; if ($webdotbase =~ /^https?:/) { # Remote dot server. We don't hardcode 'urlbase' here in case # 'sslbase' is in use. - $webdotbase =~ s/%([a-z]*)%/Bugzilla->params->{$1}/g; + $webdotbase =~ s/%([a-z]*)%/Bugzilla->params->{$1}/eg; my $url = $webdotbase . $filename; $vars->{'image_url'} = $url . ".gif"; $vars->{'map_url'} = $url . ".map"; -- 2.47.2