diff options
author | guy.pyrzak%gmail.com <> | 2009-01-23 22:08:13 +0100 |
---|---|---|
committer | guy.pyrzak%gmail.com <> | 2009-01-23 22:08:13 +0100 |
commit | a77cbd2028075fd0cb2acd7d60a113f7e5248e14 (patch) | |
tree | dd4ff60fb10cb22e31373571956d12737f7f6da3 /template | |
parent | aff82a963b8ef1561b346eea5627ee189ce405f8 (diff) | |
download | bugzilla-a77cbd2028075fd0cb2acd7d60a113f7e5248e14.tar.gz bugzilla-a77cbd2028075fd0cb2acd7d60a113f7e5248e14.tar.xz |
Bug 471518: "Field only appears when:" produces a JavaScript error in Internet Explorer
Patch By Jill Foley <jillpf55@sbcglobal.net> r=mkanat, a=mkanat
Diffstat (limited to 'template')
-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 6c5bbf626..891f5da76 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 %]'], + [[% legal_value.id FILTER js %], '[% legal_value.name FILTER html %]'][% ',' UNLESS loop.last %] [% END %] ]; [% END %] |