diff options
author | mkanat%bugzilla.org <> | 2009-02-08 20:42:19 +0100 |
---|---|---|
committer | mkanat%bugzilla.org <> | 2009-02-08 20:42:19 +0100 |
commit | f65a3e7e20fdfe2f136ecdaa228f0784bb56b9ad (patch) | |
tree | 276bfe21eed5f29153cd15f1f7a16846b8709956 /template/en/default/admin/custom_fields | |
parent | 88463d2b267baefbfc788f192ffa9f08ea972d51 (diff) | |
download | bugzilla-f65a3e7e20fdfe2f136ecdaa228f0784bb56b9ad.tar.gz bugzilla-f65a3e7e20fdfe2f136ecdaa228f0784bb56b9ad.tar.xz |
Bug 371995: Allow the Product field to restrict visibility of custom fields
Patch By Max Kanat-Alexander <mkanat@bugzilla.org> r=LpSolit, a=mkanat
Diffstat (limited to 'template/en/default/admin/custom_fields')
-rw-r--r-- | template/en/default/admin/custom_fields/cf-js.js.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/template/en/default/admin/custom_fields/cf-js.js.tmpl b/template/en/default/admin/custom_fields/cf-js.js.tmpl index 891f5da76..89a8529ed 100644 --- a/template/en/default/admin/custom_fields/cf-js.js.tmpl +++ b/template/en/default/admin/custom_fields/cf-js.js.tmpl @@ -27,7 +27,7 @@ var select_values = new Array(); [% FOREACH sel_field = Bugzilla.get_fields({ is_select => 1 }) %] select_values[[% sel_field.id FILTER js %]] = [ [% FOREACH legal_value = sel_field.legal_values %] - [[% legal_value.id FILTER js %], '[% legal_value.name FILTER html %]'][% ',' UNLESS loop.last %] + [[% legal_value.id FILTER js %], '[% legal_value.name FILTER js %]'][% ',' UNLESS loop.last %] [% END %] ]; [% END %] |