Commit 83f520e7 authored by terry%netscape.com's avatar terry%netscape.com

Got rid of some harmless warning messages.

parent 1fb74aed
......@@ -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'});
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment