diff options
author | bbaetz%student.usyd.edu.au <> | 2002-10-26 10:56:55 +0200 |
---|---|---|
committer | bbaetz%student.usyd.edu.au <> | 2002-10-26 10:56:55 +0200 |
commit | 818ce46d9780c7a04ac04a3f116021f1edadd476 (patch) | |
tree | 37a73f7a26876a5690ca7f477c10ee3979689b07 /template/en/default/reports | |
parent | 37993682fd10962e944a1e5bf9633c7b08ad49e6 (diff) | |
download | bugzilla-818ce46d9780c7a04ac04a3f116021f1edadd476.tar.gz bugzilla-818ce46d9780c7a04ac04a3f116021f1edadd476.tar.xz |
Bug 147833 - start using CGI.pm
r=gerv, justdave
Diffstat (limited to 'template/en/default/reports')
-rw-r--r-- | template/en/default/reports/report-table.html.tmpl | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/template/en/default/reports/report-table.html.tmpl b/template/en/default/reports/report-table.html.tmpl index 97dae5b48..9767f5030 100644 --- a/template/en/default/reports/report-table.html.tmpl +++ b/template/en/default/reports/report-table.html.tmpl @@ -21,7 +21,8 @@ #%] [%# INTERFACE: - # basequery: The base query for this table, in URL form + # querybase: The base query for this table, in URL form + # query: The query for this table, in URL form # data: hash of hash of hash of numbers. Bug counts. # names: hash of hash of strings. Names of tables, rows and columns. # col_field: string. Name of the field being plotted as columns. @@ -149,7 +150,7 @@ [% col_idx = 1 - col_idx %] <td class="[% classes.$row_idx.$col_idx %]" align="center"> [% IF data.$tbl.$col.$row AND data.$tbl.$col.$row > 0 %] - <a href="buglist.cgi?[% buglistbase %]& + <a href="buglist.cgi?[% querybase FILTER html %]& [% tbl_field FILTER url_quote %]=[% tbl FILTER url_quote %]& [% row_field FILTER url_quote %]=[% row FILTER url_quote %]& [% col_field FILTER url_quote %]=[% col FILTER url_quote %]"> @@ -160,7 +161,7 @@ </td> [% END %] <td class="ttotal" align="right"> - <a href="buglist.cgi?[% buglistbase %]& + <a href="buglist.cgi?[% querybase FILTER html %]& [% tbl_field FILTER url_quote %]=[% tbl FILTER url_quote %]& [% row_field FILTER url_quote %]=[% row FILTER url_quote %]"> [% row_total %]</a> @@ -178,7 +179,7 @@ [% NEXT IF col == "" %] <td class="ttotal" align="center"> - <a href="buglist.cgi?[% buglistbase %]& + <a href="buglist.cgi?[% querybase FILTER html %]& [% tbl_field FILTER url_quote %]=[% tbl FILTER url_quote %]& [% col_field FILTER url_quote %]=[% col FILTER url_quote %]"> [% col_totals.$col %]</a> @@ -187,7 +188,7 @@ [% END %] <td class="ttotal" align="right"> <strong> - <a href="buglist.cgi?[% buglistbase %]">[% grand_total %]</a> + <a href="buglist.cgi?[% querybase FILTER html %]">[% grand_total %]</a> </strong> </td> </tr> @@ -202,7 +203,7 @@ [% END %] - <a href="query.cgi?[% buffer %]&format=report-table">Edit this report</a> + <a href="query.cgi?[% query FILTER html %]&format=report-table">Edit this report</a> </div> <br> |