diff options
author | lpsolit%gmail.com <> | 2006-03-07 06:41:12 +0000 |
---|---|---|
committer | lpsolit%gmail.com <> | 2006-03-07 06:41:12 +0000 |
commit | 489040c510eb5b69db1efa06256f1ea7eea50a7c (patch) | |
tree | 600d6dbf26006d38f424b66ad7037d8f2650b50c | |
parent | a13a1f0ff55fe8d24e6ee6b84c85aa8f96d9816d (diff) | |
download | bugs-489040c510eb5b69db1efa06256f1ea7eea50a7c.tar bugs-489040c510eb5b69db1efa06256f1ea7eea50a7c.tar.gz bugs-489040c510eb5b69db1efa06256f1ea7eea50a7c.tar.bz2 bugs-489040c510eb5b69db1efa06256f1ea7eea50a7c.tar.xz bugs-489040c510eb5b69db1efa06256f1ea7eea50a7c.zip |
Bug 328667: if I do a search on just one product, there should be a 'new bug against this product' link - Patch by Vlad Dascalu <vladd@bugzilla.org> r=LpSolit a=myk
-rw-r--r-- | template/en/default/list/list.html.tmpl | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/template/en/default/list/list.html.tmpl b/template/en/default/list/list.html.tmpl index 5ac715a0c..57775ba50 100644 --- a/template/en/default/list/list.html.tmpl +++ b/template/en/default/list/list.html.tmpl @@ -226,6 +226,12 @@ </tr> </table> +[% IF cgi.param('product').size == 1 %] + <p> + <a href="enter_bug.cgi?product=[% cgi.param('product') FILTER url_quote %]">Fill + a new [% terms.bug %] in the "[% cgi.param('product') FILTER html %]" product</a> + </p> +[% END %] [%############################################################################%] [%# Page Footer #%] |