diff options
author | myk%mozilla.org <> | 2002-07-10 09:45:52 +0200 |
---|---|---|
committer | myk%mozilla.org <> | 2002-07-10 09:45:52 +0200 |
commit | 3389d6218044ad7ae0bbf8e646d94b349d4d38ff (patch) | |
tree | 1db35148db24d48d7720cfac9ad2112c69c015c1 /template/en/default/list | |
parent | 2809fb5698934c0e73c26294fedb1604db896f30 (diff) | |
download | bugzilla-3389d6218044ad7ae0bbf8e646d94b349d4d38ff.tar.gz bugzilla-3389d6218044ad7ae0bbf8e646d94b349d4d38ff.tar.xz |
Fix for bug 156564: flag bug IDs as integers in the RDF output of buglist.cgi.
2xr=bbaetz
Diffstat (limited to 'template/en/default/list')
-rw-r--r-- | template/en/default/list/list-rdf.rdf.tmpl | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/template/en/default/list/list-rdf.rdf.tmpl b/template/en/default/list/list-rdf.rdf.tmpl index c8beb50e3..c7cd10d63 100644 --- a/template/en/default/list/list-rdf.rdf.tmpl +++ b/template/en/default/list/list-rdf.rdf.tmpl @@ -22,7 +22,8 @@ <?xml version="1.0"?> <!-- [% template_version %] --> <RDF xmlns="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:bz="http://www.bugzilla.org/rdf#"> + xmlns:bz="http://www.bugzilla.org/rdf#" + xmlns:nc="http://home.netscape.com/NC-rdf#"> <bz:result about="[% Param('urlbase') %]buglist.cgi?[% urlquerypart FILTER html %]"> @@ -33,7 +34,7 @@ <bz:bug about="[% Param('urlbase') %]show_bug.cgi?id=[% bug.id %]"> - <bz:id>[% bug.id %]</bz:id> + <bz:id nc:parseType="Integer">[% bug.id %]</bz:id> [% FOREACH column = displaycolumns %] <bz:[% column %]>[% bug.$column FILTER html %]</bz:[% column %]> |