diff options
author | Marc Schumann <wurblzap@gmail.com> | 2012-10-16 20:26:54 +0200 |
---|---|---|
committer | Marc Schumann <wurblzap@gmail.com> | 2012-10-16 20:26:54 +0200 |
commit | af38912df5c0f57ad40377119b91dd03d8f9b520 (patch) | |
tree | bd04fc880184f7b063e17d12af2d13ef1f5998cc /template/en/default/reports | |
parent | b60afed2cc7c8776217444049e5ebfadf5839a24 (diff) | |
download | bugzilla-af38912df5c0f57ad40377119b91dd03d8f9b520.tar.gz bugzilla-af38912df5c0f57ad40377119b91dd03d8f9b520.tar.xz |
Bug 604388 - Filenames used to store data for Old Charts should be based on product IDs, not names (avoid dataloss when renaming products).
r/a=LpSolit
Diffstat (limited to 'template/en/default/reports')
-rw-r--r-- | template/en/default/reports/old-charts.html.tmpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/template/en/default/reports/old-charts.html.tmpl b/template/en/default/reports/old-charts.html.tmpl index 12a0cdd83..29098c160 100644 --- a/template/en/default/reports/old-charts.html.tmpl +++ b/template/en/default/reports/old-charts.html.tmpl @@ -28,9 +28,9 @@ <tr> <th>Product:</th> <td align="center"> - <select id="product" name="product"> + <select id="product_id" name="product_id"> [% FOREACH product = products %] - <option value="[% product FILTER html %]">[% product FILTER html %]</option> + <option value="[% product.id FILTER html %]">[% product.name || '-All-' FILTER html %]</option> [% END %] </select> </td> |