diff options
Diffstat (limited to 'showdependencygraph.cgi')
-rwxr-xr-x | showdependencygraph.cgi | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/showdependencygraph.cgi b/showdependencygraph.cgi index 4339bb3e5..01ac1e2e3 100755 --- a/showdependencygraph.cgi +++ b/showdependencygraph.cgi @@ -29,7 +29,6 @@ use File::Temp; use Bugzilla; use Bugzilla::Config qw(:DEFAULT $webdotdir); use Bugzilla::Util; -use Bugzilla::BugMail; use Bugzilla::Bug; require "globals.pl"; @@ -221,7 +220,7 @@ my $webdotbase = Param('webdotbase'); if ($webdotbase =~ /^https?:/) { # Remote dot server - my $url = PerformSubsts($webdotbase) . $filename; + my $url = perform_substs($webdotbase) . $filename; $vars->{'image_url'} = $url . ".gif"; $vars->{'map_url'} = $url . ".map"; } else { |