summaryrefslogtreecommitdiffstats
path: root/Bugzilla
diff options
context:
space:
mode:
authorbbaetz%student.usyd.edu.au <>2002-11-20 09:53:10 +0100
committerbbaetz%student.usyd.edu.au <>2002-11-20 09:53:10 +0100
commit1554eaf8592e53ccea48adc1f96938f60d27ab9e (patch)
tree5da17d986626cd41bd7a45e48517b3e41c8b66b6 /Bugzilla
parentc42a344256b6f57a156a63be6de31d47a6a23c49 (diff)
downloadbugzilla-1554eaf8592e53ccea48adc1f96938f60d27ab9e.tar.gz
bugzilla-1554eaf8592e53ccea48adc1f96938f60d27ab9e.tar.xz
Bug 180966 - fix misc warnings
r,a=myk
Diffstat (limited to 'Bugzilla')
-rw-r--r--Bugzilla/User.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/User.pm b/Bugzilla/User.pm
index b12b5e135..a45cf0976 100644
--- a/Bugzilla/User.pm
+++ b/Bugzilla/User.pm
@@ -267,7 +267,7 @@ sub match_field {
next if !defined($vars->{'mform'}->{$field});
# Skip it if this is a --do_not_change-- field
- next if $dontchange eq $vars->{'form'}->{$field};
+ next if $dontchange && $dontchange eq $vars->{'form'}->{$field};
# We need to move the query to $raw_field, where it will be split up,
# modified by the search, and put back into $::FORM and $::MFORM