diff options
Diffstat (limited to 'showdependencygraph.cgi')
-rwxr-xr-x | showdependencygraph.cgi | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/showdependencygraph.cgi b/showdependencygraph.cgi index 129964e99..a023dd77d 100755 --- a/showdependencygraph.cgi +++ b/showdependencygraph.cgi @@ -191,9 +191,7 @@ foreach my $k (@bug_ids) { if ($summary ne "" && $cgi->param('showsummary')) { # Wide characters cause GraphViz to die. - if (Bugzilla->params->{'utf8'}) { - utf8::encode($summary) if utf8::is_utf8($summary); - } + utf8::encode($summary) if utf8::is_utf8($summary); $summary = wrap_comment($summary); $summary =~ s/([\\\"])/\\$1/g; push(@params, qq{label="$k\\n$summary"}); |