Commit 759a1880 authored by jake%acutex.net's avatar jake%acutex.net

Fix for bug 92713, show_activity.pl displays zeros as non-breaking spaces.

Patch by Myk Melez <myk@mozilla.org> r= jake@acutex.net
parent 0ddaf7ee
......@@ -1157,8 +1157,8 @@ sub DumpBugActivity {
my ($field,$when,$removed,$added,$who) = (@row);
$removed = html_quote($removed);
$added = html_quote($added);
$removed ||= "&nbsp;";
$added ||= "&nbsp;";
$removed = "&nbsp;" if $removed eq "";
$added = "&nbsp;" if $added eq "";
print "<tr>\n";
print "<td>$who</td>\n";
print "<td>$field</td>\n";
......
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