diff options
author | lpsolit%gmail.com <> | 2007-04-19 17:05:20 +0200 |
---|---|---|
committer | lpsolit%gmail.com <> | 2007-04-19 17:05:20 +0200 |
commit | 40e63525a8bda9132a4d2c0d296b2b7e89fe75de (patch) | |
tree | c55b68fd0ed29b7752d0956c7cab85d8004882e6 /template/en/default/reports | |
parent | 29ab35c232fdff053f78b18598bfbe6a13f29826 (diff) | |
download | bugzilla-40e63525a8bda9132a4d2c0d296b2b7e89fe75de.tar.gz bugzilla-40e63525a8bda9132a4d2c0d296b2b7e89fe75de.tar.xz |
Bug 369933: Use Bugzilla::Util::correct_urlbase() everywhere in templates to get the correct URL to the Bugzilla installation - Patch by Alex Eiser <aeiser@arc.nasa.gov> r/a=LpSolit
Diffstat (limited to 'template/en/default/reports')
-rw-r--r-- | template/en/default/reports/duplicates.rdf.tmpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/template/en/default/reports/duplicates.rdf.tmpl b/template/en/default/reports/duplicates.rdf.tmpl index 15594c7ca..beb95f186 100644 --- a/template/en/default/reports/duplicates.rdf.tmpl +++ b/template/en/default/reports/duplicates.rdf.tmpl @@ -26,12 +26,12 @@ xmlns:bz="http://www.bugzilla.org/rdf#" xmlns:nc="http://home.netscape.com/NC-rdf#"> -<bz:duplicates_report rdf:about="[% Param('urlbase') %]data/duplicates.rdf"> +<bz:duplicates_report rdf:about="[% urlbase FILTER xml %]data/duplicates.rdf"> <bz:bugs> <Seq> [% FOREACH bug = bugs %] <li> - <bz:bug rdf:about="[% Param('urlbase') %]show_bug.cgi?id=[% bug.id %]"> + <bz:bug rdf:about="[% urlbase FILTER xml %]show_bug.cgi?id=[% bug.id %]"> <bz:id nc:parseType="Integer">[% bug.id %]</bz:id> <bz:resolution>[% bug.resolution FILTER html %]</bz:resolution> <bz:duplicate_count nc:parseType="Integer">[% bug.count %]</bz:duplicate_count> |