summaryrefslogtreecommitdiffstats
path: root/Bugzilla/User.pm
diff options
context:
space:
mode:
authorjustdave%syndicomm.com <>2002-11-22 03:46:16 +0100
committerjustdave%syndicomm.com <>2002-11-22 03:46:16 +0100
commit0615f228a0fec557e754c00935e8319cadf220a5 (patch)
treeeaea259f4293f2385dffcffcae941e8d47b1a8c4 /Bugzilla/User.pm
parent0d804e66f40ee8d9de11f7075428ebc1ef162c31 (diff)
downloadbugzilla-0615f228a0fec557e754c00935e8319cadf220a5.tar.gz
bugzilla-0615f228a0fec557e754c00935e8319cadf220a5.tar.xz
Backing out the checkin for bug 180966 (fix warnings in web server error log). This checkin caused commenting on bugs to fail
if timetracking is not enabled.
Diffstat (limited to 'Bugzilla/User.pm')
-rw-r--r--Bugzilla/User.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/User.pm b/Bugzilla/User.pm
index a45cf0976..b12b5e135 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 && $dontchange eq $vars->{'form'}->{$field};
+ next if $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