diff options
author | mkanat%bugzilla.org <> | 2008-08-12 14:58:06 +0200 |
---|---|---|
committer | mkanat%bugzilla.org <> | 2008-08-12 14:58:06 +0200 |
commit | ac6820ab03a12c710404acf102d9351c0a6e986c (patch) | |
tree | 8edc622fe04a3c77937eede6782d5439ef991abf /template/en/default/search | |
parent | c0b5d5f7f2b86a6a8af44a71d10d662e11d57622 (diff) | |
download | bugzilla-ac6820ab03a12c710404acf102d9351c0a6e986c.tar.gz bugzilla-ac6820ab03a12c710404acf102d9351c0a6e986c.tar.xz |
Bug 441542: Graphical Reports "Generate Report" button has wrong CSS id
Patch By Guy Pyrzak <guy.pyrzak@gmail.com> r=LpSolit, a=LpSolit
Diffstat (limited to 'template/en/default/search')
-rw-r--r-- | template/en/default/search/form.html.tmpl | 2 | ||||
-rw-r--r-- | template/en/default/search/search-report-graph.html.tmpl | 2 | ||||
-rw-r--r-- | template/en/default/search/search-report-table.html.tmpl | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/template/en/default/search/form.html.tmpl b/template/en/default/search/form.html.tmpl index 1df194c3d..7bde916c9 100644 --- a/template/en/default/search/form.html.tmpl +++ b/template/en/default/search/form.html.tmpl @@ -147,7 +147,7 @@ function doOnSelectProduct(selectmode) { </td> <td> [% IF button_name %] - <input type="submit" id="[% button_name.replace (' ' , '_') FILTER html %]" + <input type="submit" id="[% button_name FILTER css_class_quote %]_top" value="[% button_name FILTER html %]"> [% END %] </td> diff --git a/template/en/default/search/search-report-graph.html.tmpl b/template/en/default/search/search-report-graph.html.tmpl index 83b916631..61dd3b5df 100644 --- a/template/en/default/search/search-report-graph.html.tmpl +++ b/template/en/default/search/search-report-graph.html.tmpl @@ -129,7 +129,7 @@ var queryform = "reportform" [% PROCESS search/form.html.tmpl %] <br> -<input type="submit" id="[% button_name FILTER html %]" +<input type="submit" id="[% button_name FILTER css_class_quote %]" value="[% button_name FILTER html %]"> <input type="hidden" name="action" value="wrap"> <hr> diff --git a/template/en/default/search/search-report-table.html.tmpl b/template/en/default/search/search-report-table.html.tmpl index 8c9f2512f..55d62a140 100644 --- a/template/en/default/search/search-report-table.html.tmpl +++ b/template/en/default/search/search-report-table.html.tmpl @@ -81,7 +81,7 @@ var queryform = "reportform" [% PROCESS search/form.html.tmpl %] <br> -<input type="submit" id="[% button_name.replace (' ' , '_') FILTER html %]" +<input type="submit" id="[% button_name FILTER css_class_quote %]" value="[% button_name FILTER html %]"> <input type="hidden" name="format" value="table"> <input type="hidden" name="action" value="wrap"> |