summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--CGI.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/CGI.pl b/CGI.pl
index 06d32d05f..425956370 100644
--- a/CGI.pl
+++ b/CGI.pl
@@ -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";