summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormkanat%bugzilla.org <>2007-07-26 13:55:56 +0200
committermkanat%bugzilla.org <>2007-07-26 13:55:56 +0200
commit8ce61a1c54c91ef3977f09c8896bb2cd20490989 (patch)
tree8fc2fc9c99506ff9eb9acc55af66a120cf16484e
parentaf19852c9e35f0364f692d76232d20d9fa5340b7 (diff)
downloadbugzilla-8ce61a1c54c91ef3977f09c8896bb2cd20490989.tar.gz
bugzilla-8ce61a1c54c91ef3977f09c8896bb2cd20490989.tar.xz
Bug 370398: Dependency graph wrong url path under mod_perl
Patch By Max Kanat-Alexander <mkanat@bugzilla.org> r=LpSolit, a=LpSolit
-rwxr-xr-xshowdependencygraph.cgi2
1 files changed, 1 insertions, 1 deletions
diff --git a/showdependencygraph.cgi b/showdependencygraph.cgi
index 4e9299a73..fd042f436 100755
--- a/showdependencygraph.cgi
+++ b/showdependencygraph.cgi
@@ -271,7 +271,7 @@ if ($webdotbase =~ /^https?:/) {
# Under mod_perl, pngfilename will have an absolute path, and we
# need to make that into a relative path.
my $cgi_root = bz_locations()->{cgi_path};
- $pngfilename =~ s/^\Q$cgi_root\E//;
+ $pngfilename =~ s#^\Q$cgi_root\E/?##;
$vars->{'image_url'} = $pngfilename;