]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Got rid of some harmless warning messages.
authorterry%netscape.com <>
Thu, 10 Dec 1998 03:27:37 +0000 (03:27 +0000)
committerterry%netscape.com <>
Thu, 10 Dec 1998 03:27:37 +0000 (03:27 +0000)
process_bug.cgi

index 6755ce91cf50c231dc660f33c60da0acb75b7d5e..b8c0c581565ed295460df983e313897571edca0f 100755 (executable)
@@ -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'});