From: mkanat%bugzilla.org <> Date: Thu, 26 Jul 2007 11:55:56 +0000 (+0000) Subject: Bug 370398: Dependency graph wrong url path under mod_perl X-Git-Tag: bugzilla-3.1.2~112 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8ce61a1c54c91ef3977f09c8896bb2cd20490989;p=thirdparty%2Fbugzilla.git Bug 370398: Dependency graph wrong url path under mod_perl Patch By Max Kanat-Alexander r=LpSolit, a=LpSolit --- diff --git a/showdependencygraph.cgi b/showdependencygraph.cgi index 4e9299a73e..fd042f4363 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;