diff options
author | bbaetz%student.usyd.edu.au <> | 2002-11-22 10:47:34 +0100 |
---|---|---|
committer | bbaetz%student.usyd.edu.au <> | 2002-11-22 10:47:34 +0100 |
commit | 1e400dc0114d167a38d37842e6165b9c34d7c8d9 (patch) | |
tree | a3748be7fea242befccc5e4c889a9552d6fc7bbc /Bugzilla | |
parent | 9973264f52fb44c882d54826df7280d0cff8eaa1 (diff) | |
download | bugzilla-1e400dc0114d167a38d37842e6165b9c34d7c8d9.tar.gz bugzilla-1e400dc0114d167a38d37842e6165b9c34d7c8d9.tar.xz |
Bug 180966 - warnings in webserver error log (take 2)
r=joel, a=justdave
Diffstat (limited to 'Bugzilla')
-rw-r--r-- | Bugzilla/User.pm | 2 |
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 |