From: terry%netscape.com <> Date: Thu, 10 Dec 1998 03:27:37 +0000 (+0000) Subject: Got rid of some harmless warning messages. X-Git-Tag: bugzilla-2.2~50 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=83f520e74861ca9ae36d13b9d957ea1872531d01;p=thirdparty%2Fbugzilla.git Got rid of some harmless warning messages. --- diff --git a/process_bug.cgi b/process_bug.cgi index 6755ce91cf..b8c0c58156 100755 --- a/process_bug.cgi +++ b/process_bug.cgi @@ -273,6 +273,12 @@ foreach my $id (@idlist) { foreach my $col (@::log_columns) { my $old = shift @oldvalues; my $new = shift @newvalues; + if (!defined $old) { + $old = ""; + } + if (!defined $new) { + $new = ""; + } if ($old ne $new) { if (!defined $whoid) { $whoid = DBNameToIdAndCheck($::FORM{'who'});