summaryrefslogtreecommitdiffstats
path: root/process_bug.cgi
diff options
context:
space:
mode:
authorterry%netscape.com <>1998-12-10 04:27:37 +0100
committerterry%netscape.com <>1998-12-10 04:27:37 +0100
commit83f520e74861ca9ae36d13b9d957ea1872531d01 (patch)
treee11343bb2cee91e3519b7c5ae13f29d7365cad80 /process_bug.cgi
parent1fb74aedc9ef2def076a513d47570081ddb022e1 (diff)
downloadbugzilla-83f520e74861ca9ae36d13b9d957ea1872531d01.tar.gz
bugzilla-83f520e74861ca9ae36d13b9d957ea1872531d01.tar.xz
Got rid of some harmless warning messages.
Diffstat (limited to 'process_bug.cgi')
-rwxr-xr-xprocess_bug.cgi6
1 files changed, 6 insertions, 0 deletions
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'});