From 759a18801e846f9fca62afb4b43df0252669ba7d Mon Sep 17 00:00:00 2001 From: "jake%acutex.net" <> Date: Mon, 30 Jul 2001 19:52:21 +0000 Subject: Fix for bug 92713, show_activity.pl displays zeros as non-breaking spaces. Patch by Myk Melez r= jake@acutex.net --- CGI.pl | 4 ++-- 1 file 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 "\n"; print "$who\n"; print "$field\n"; -- cgit v1.2.3-24-g4f1b