summaryrefslogtreecommitdiffstats
path: root/Bugzilla/WebService/Bug.pm
diff options
context:
space:
mode:
authorDavid Lawrence <dkl@mozilla.com>2015-12-22 21:57:02 +0100
committerDavid Lawrence <dkl@mozilla.com>2015-12-22 21:57:02 +0100
commitc94abb0445d015c1bffcd7207eac6fd9a3a8371b (patch)
tree6ad96bda176859c9347a36940287b4b6c4fd3599 /Bugzilla/WebService/Bug.pm
parent34f8910f2b22ada382d191052f70a7427c88f95a (diff)
downloadbugzilla-c94abb0445d015c1bffcd7207eac6fd9a3a8371b.tar.gz
bugzilla-c94abb0445d015c1bffcd7207eac6fd9a3a8371b.tar.xz
Revert "Bug 1230932 - Providing a condition as an ID to the webservice results in a taint error"
Diffstat (limited to 'Bugzilla/WebService/Bug.pm')
-rw-r--r--Bugzilla/WebService/Bug.pm4
1 files changed, 0 insertions, 4 deletions
diff --git a/Bugzilla/WebService/Bug.pm b/Bugzilla/WebService/Bug.pm
index 75a0aab0e..84f209347 100644
--- a/Bugzilla/WebService/Bug.pm
+++ b/Bugzilla/WebService/Bug.pm
@@ -1200,10 +1200,6 @@ sub update_comment_tags {
{ function => 'Bug.update_comment_tags',
param => 'comment_id' });
- ThrowCodeError("param_integer_required", { function => 'Bug.update_comment_tags',
- param => 'comment_id' })
- unless $comment_id =~ /^[0-9]+$/;
-
my $comment = Bugzilla::Comment->new($comment_id)
|| return [];
$comment->bug->check_is_visible();