]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Fix for bug 156564: flag bug IDs as integers in the RDF output of buglist.cgi.
authormyk%mozilla.org <>
Wed, 10 Jul 2002 07:45:52 +0000 (07:45 +0000)
committermyk%mozilla.org <>
Wed, 10 Jul 2002 07:45:52 +0000 (07:45 +0000)
2xr=bbaetz

template/en/default/list/list-rdf.rdf.tmpl

index c8beb50e32f9f3baa2b89741f5b5210dbbb6997b..c7cd10d63eeda71e9babb204cc3c789810b5a8d6 100644 (file)
@@ -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 %]>