diff options
-rw-r--r-- | CGI.pl | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1157,8 +1157,8 @@ sub DumpBugActivity { my ($field,$when,$removed,$added,$who) = (@row); $removed = html_quote($removed); $added = html_quote($added); - $removed ||= " "; - $added ||= " "; + $removed = " " if $removed eq ""; + $added = " " if $added eq ""; print "<tr>\n"; print "<td>$who</td>\n"; print "<td>$field</td>\n"; |