summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Bug.pm
diff options
context:
space:
mode:
authorFrédéric Buclin <LpSolit@gmail.com>2010-08-02 03:34:14 +0200
committerFrédéric Buclin <LpSolit@gmail.com>2010-08-02 03:34:14 +0200
commit984348dbea43263372f84fd4d9cf2a56f6a6112f (patch)
tree619d2b70a050e25b12935c05cdf7f1ff4cddec38 /Bugzilla/Bug.pm
parent300521bde81fd1102cac692ebc0a75312d1c5f2b (diff)
downloadbugzilla-984348dbea43263372f84fd4d9cf2a56f6a6112f.tar.gz
bugzilla-984348dbea43263372f84fd4d9cf2a56f6a6112f.tar.xz
Bug 583622: email_in.pl doesn't let me set timetracking fields
r/a=mkanat
Diffstat (limited to 'Bugzilla/Bug.pm')
-rw-r--r--Bugzilla/Bug.pm6
1 files changed, 0 insertions, 6 deletions
diff --git a/Bugzilla/Bug.pm b/Bugzilla/Bug.pm
index 6638573c6..b9fffe779 100644
--- a/Bugzilla/Bug.pm
+++ b/Bugzilla/Bug.pm
@@ -3731,12 +3731,6 @@ sub map_fields {
}
$field_values{$field_name} = $params->{$field};
}
-
- # This protects the WebService Bug.search method.
- unless (Bugzilla->user->is_timetracker) {
- delete @field_values{qw(estimated_time remaining_time deadline)};
- }
-
return \%field_values;
}