diff options
author | David Lawrence <dkl@mozilla.com> | 2015-12-21 23:27:52 +0100 |
---|---|---|
committer | David Lawrence <dkl@mozilla.com> | 2015-12-21 23:27:52 +0100 |
commit | 1e7b4002794930fad702718714b5d1c291bf816c (patch) | |
tree | 9a62f822dc148df80bbc3199ef0ef9f6bb1c222c /template | |
parent | 4049782d5f01e12231c1d4c27006d5f56dd54294 (diff) | |
download | bugzilla-1e7b4002794930fad702718714b5d1c291bf816c.tar.gz bugzilla-1e7b4002794930fad702718714b5d1c291bf816c.tar.xz |
Bug 1234325 - Backport upstream bug 1230932 to bmo/4.2 to fix providing a condition as an ID to the webservice results in a taint error
Diffstat (limited to 'template')
-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 c4ff7e73a..9a0d84866 100644 --- a/template/en/default/global/code-error.html.tmpl +++ b/template/en/default/global/code-error.html.tmpl @@ -375,6 +375,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 |