summaryrefslogtreecommitdiffstats
path: root/template/en/default/search/form.html.tmpl
diff options
context:
space:
mode:
authorlpsolit%gmail.com <>2006-10-20 01:15:53 +0200
committerlpsolit%gmail.com <>2006-10-20 01:15:53 +0200
commit5581722e51734285f0ee8581671c27cac3b604c3 (patch)
tree98d0d9098314df78f0dc08832dc8a74730f0b214 /template/en/default/search/form.html.tmpl
parent84973470df08a269632287e66c52aa30f515ccc1 (diff)
downloadbugzilla-5581722e51734285f0ee8581671c27cac3b604c3.tar.gz
bugzilla-5581722e51734285f0ee8581671c27cac3b604c3.tar.xz
Bug 312876: Make new products non-selectable until they have components - Patch by victory(_RSZ_) <bmo2007@rsz.jp> r=wurblzap a=myk
Diffstat (limited to 'template/en/default/search/form.html.tmpl')
-rw-r--r--template/en/default/search/form.html.tmpl6
1 files changed, 4 insertions, 2 deletions
diff --git a/template/en/default/search/form.html.tmpl b/template/en/default/search/form.html.tmpl
index d7b7715fd..3cc8b7b43 100644
--- a/template/en/default/search/form.html.tmpl
+++ b/template/en/default/search/form.html.tmpl
@@ -45,7 +45,7 @@ var tms = new Array();
prods[[% nclass FILTER js %]] = [
[% sep = '' %]
[%- FOREACH item = c.products -%]
- [%- IF user.can_see_product(item.name) -%]
+ [%- IF user.can_see_product(item.name) && item.components.size -%]
[%- sep FILTER js %]'[% item.name FILTER js %]'
[%- sep = ',' -%]
[%- END -%]
@@ -58,7 +58,7 @@ var tms = new Array();
[% n = 0 %]
[% FOREACH p = product %]
- [% IF Param('useclassification') %]
+ [% IF Param('useclassification') && p.components.size %]
prods['[% p.name FILTER js %]'] = [% n %]
[% END %]
cpts[[% n %]] = [
@@ -193,9 +193,11 @@ function doOnSelectProduct(selectmode) {
<select name="product" multiple="multiple" size="5" id="product"
onchange="doOnSelectProduct(2);">
[% FOREACH p = product %]
+ [% IF p.components.size %]
<option value="[% p.name FILTER html %]"
[% " selected" IF lsearch(default.product, p.name) != -1 %]>
[% p.name FILTER html %]</option>
+ [% END %]
[% END %]
</select>
</td>