Commit e0d724fb authored by Frédéric Buclin's avatar Frédéric Buclin

Bug 510147: Some product names can trigger "Wide character in print" warnings…

Bug 510147: Some product names can trigger "Wide character in print" warnings (make sure to open files as UTF8) r/a=mkanat
parent c558f9f5
......@@ -201,6 +201,10 @@ sub collect_stats {
|| ThrowCodeError('chart_file_open_fail', {'filename' => $file});
}
if (Bugzilla->params->{'utf8'}) {
binmode DATA, ':utf8';
}
# Now collect current data.
my @row = (today());
my $status_sql = q{SELECT COUNT(*) FROM bugs WHERE bug_status = ?};
......@@ -258,6 +262,10 @@ sub get_old_data {
open(DATA, '<', $file)
|| ThrowCodeError('chart_file_open_fail', {'filename' => $file});
if (Bugzilla->params->{'utf8'}) {
binmode DATA, ':utf8';
}
my @data;
my @columns;
my $recreate = 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment