diff options
author | myk%mozilla.org <> | 2003-11-22 08:15:40 +0100 |
---|---|---|
committer | myk%mozilla.org <> | 2003-11-22 08:15:40 +0100 |
commit | 295f2e43cb47303c1e9eb60d33076281f4530f61 (patch) | |
tree | e0bd52697d626957958def615593dbc42a41f585 /template/en/default/list | |
parent | afe02a6edbc84062347813aba15f80623472f7a9 (diff) | |
download | bugzilla-295f2e43cb47303c1e9eb60d33076281f4530f61.tar.gz bugzilla-295f2e43cb47303c1e9eb60d33076281f4530f61.tar.xz |
Fix for bug 226469: labels the votes column in the RDF buglist output as containing Integer values so they sort correctly in RDF-slurping clients.
Diffstat (limited to 'template/en/default/list')
-rw-r--r-- | template/en/default/list/list.rdf.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/template/en/default/list/list.rdf.tmpl b/template/en/default/list/list.rdf.tmpl index 5d77feee7..39a2350f1 100644 --- a/template/en/default/list/list.rdf.tmpl +++ b/template/en/default/list/list.rdf.tmpl @@ -38,7 +38,7 @@ <bz:id nc:parseType="Integer">[% bug.bug_id %]</bz:id> [% FOREACH column = displaycolumns %] - <bz:[% column %]>[% bug.$column FILTER html %]</bz:[% column %]> + <bz:[% column %][% ' nc:parseType="Integer"' IF column == "votes" %]>[% bug.$column FILTER html %]</bz:[% column %]> [% END %] </bz:bug> |