diff options
author | Dylan Hardison <dylan@mozilla.com> | 2015-12-22 12:08:32 -0500 |
---|---|---|
committer | Dylan Hardison <dylan@mozilla.com> | 2015-12-22 12:08:32 -0500 |
commit | 396ae88235ef68ed45978dfb36774c5fe9a2d699 (patch) | |
tree | f885c04bd3923a15075e342923dd87f56950b9f1 /template/en/default/global | |
parent | 6a2413842f48246f017be14610b697d1ac542e71 (diff) | |
download | bugs-396ae88235ef68ed45978dfb36774c5fe9a2d699.tar bugs-396ae88235ef68ed45978dfb36774c5fe9a2d699.tar.gz bugs-396ae88235ef68ed45978dfb36774c5fe9a2d699.tar.bz2 bugs-396ae88235ef68ed45978dfb36774c5fe9a2d699.tar.xz bugs-396ae88235ef68ed45978dfb36774c5fe9a2d699.zip |
Bug 1230932 - Providing a condition as an ID to the webservice results in a taint error
r=dkl,a=dkl
Diffstat (limited to 'template/en/default/global')
-rw-r--r-- | template/en/default/global/code-error.html.tmpl | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/template/en/default/global/code-error.html.tmpl b/template/en/default/global/code-error.html.tmpl index d73d75e13..6dc49c6f1 100644 --- a/template/en/default/global/code-error.html.tmpl +++ b/template/en/default/global/code-error.html.tmpl @@ -290,6 +290,13 @@ a <code>[% param FILTER html %]</code> argument, and that argument was not set. + [% ELSIF error == "param_integer_required" %] + The function <code>[% function FILTER html %]</code> requires + that <code>[% param FILTER html %]</code> be an integer. + + [% ELSIF error == "param_integer_array_required" %] + The <code>[% param FILTER html %]</code> parameter must be an array of integers. + [% ELSIF error == "params_required" %] [% title = "Missing Parameter" %] The function <code>[% function FILTER html %]</code> requires |