diff options
author | Max Kanat-Alexander <mkanat@bugzilla.org> | 2010-02-17 22:49:23 +0100 |
---|---|---|
committer | Max Kanat-Alexander <mkanat@bugzilla.org> | 2010-02-17 22:49:23 +0100 |
commit | 779b283127b310bb8676d11fed7a071ef1ce4ceb (patch) | |
tree | a73f4042e09fddab7a53377aec05e4be53595e16 /template/en/default/global/help.html.tmpl | |
parent | 72c4efb6b8620e0e56ff6741971b952d468ce10d (diff) | |
download | bugzilla-779b283127b310bb8676d11fed7a071ef1ce4ceb.tar.gz bugzilla-779b283127b310bb8676d11fed7a071ef1ce4ceb.tar.xz |
Bug 529201: Add help for every single field to fields.html
r=LpSolit, a=LpSolit
Diffstat (limited to 'template/en/default/global/help.html.tmpl')
-rw-r--r-- | template/en/default/global/help.html.tmpl | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/template/en/default/global/help.html.tmpl b/template/en/default/global/help.html.tmpl index 36439bc07..c0ff819ce 100644 --- a/template/en/default/global/help.html.tmpl +++ b/template/en/default/global/help.html.tmpl @@ -23,8 +23,9 @@ [% IF cgi.param("help") %] <script type="text/javascript"> <!-- - [% FOREACH h = help_html %] - g_helpTexts["[% h.id FILTER js %]"] = "[%- h.html FILTER js -%]"; + [% FOREACH help_name = help_html.keys %] + g_helpTexts["[% help_name FILTER js %]"] = + "[%- help_html.$help_name FILTER js -%]"; [% END %] // --> </script> |