diff options
author | mkanat%bugzilla.org <> | 2006-08-11 02:53:07 +0200 |
---|---|---|
committer | mkanat%bugzilla.org <> | 2006-08-11 02:53:07 +0200 |
commit | 91986ae4f25eed69862b8d0b5f176e84339c6052 (patch) | |
tree | b407cef033d75245170e635d95bd7ba40caa4eea /template/en/default | |
parent | 84c1e818ec0e777390042ab89cce496cdc7358a9 (diff) | |
download | bugzilla-91986ae4f25eed69862b8d0b5f176e84339c6052.tar.gz bugzilla-91986ae4f25eed69862b8d0b5f176e84339c6052.tar.xz |
Bug 347061: Create Bugzilla::Object->create and make Bugzilla::Keyword use it
Patch By Max Kanat-Alexander <mkanat@bugzilla.org> r=bkor, a=myk
Diffstat (limited to 'template/en/default')
-rw-r--r-- | template/en/default/global/code-error.html.tmpl | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/template/en/default/global/code-error.html.tmpl b/template/en/default/global/code-error.html.tmpl index f64cf6411..9d039a07c 100644 --- a/template/en/default/global/code-error.html.tmpl +++ b/template/en/default/global/code-error.html.tmpl @@ -294,6 +294,12 @@ Invalid parameter passed to [% function FILTER html %]. It must be numeric. + [% ELSIF error == "param_required" %] + [% title = "Missing Parameter" %] + The function <code>[% function FILTER html %]</code> requires + a <code>[% param FILTER html %]</code> argument, and that + argument was not set. + [% ELSIF error == "unknown_comparison_type" %] Specified comparison type is not supported. |