diff options
author | Dafydd Harries <dafydd.harries@collabora.co.uk> | 2008-04-07 18:40:18 +0000 |
---|---|---|
committer | Marc-André Lureau <marcandre.lureau@gmail.com> | 2009-02-13 00:01:42 +0200 |
commit | 5f4d9e124ced4b338de49b174c0608cd491f2872 (patch) | |
tree | 486d26ea496831b6e55def3025f7d5f3d7ffa914 /tools | |
parent | d6b4d0f7e75d00dfdb11c09211e6506f632e8c0b (diff) |
explicitly use string() on tp:version instead of passing through to identity template
Diffstat (limited to 'tools')
-rw-r--r-- | tools/doc-generator.xsl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/doc-generator.xsl b/tools/doc-generator.xsl index 75cbf15..1ecc75a 100644 --- a/tools/doc-generator.xsl +++ b/tools/doc-generator.xsl @@ -821,7 +821,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA <xsl:value-of select="tp:title" /> </h1> <xsl:if test="tp:version"> - <h2>Version <xsl:apply-templates select="tp:version"/></h2> + <h2>Version <xsl:value-of select="string(tp:version)"/></h2> </xsl:if> <xsl:apply-templates select="tp:copyright"/> <xsl:apply-templates select="tp:license"/> |