From 83f520e74861ca9ae36d13b9d957ea1872531d01 Mon Sep 17 00:00:00 2001 From: "terry%netscape.com" <> Date: Thu, 10 Dec 1998 03:27:37 +0000 Subject: Got rid of some harmless warning messages. --- process_bug.cgi | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'process_bug.cgi') diff --git a/process_bug.cgi b/process_bug.cgi index 6755ce91c..b8c0c5815 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'}); -- cgit v1.2.3-24-g4f1b