diff options
author | Benjamin Franzke <benjaminfranzke@googlemail.com> | 2012-07-05 14:41:31 +0200 |
---|---|---|
committer | Benjamin Franzke <benjaminfranzke@googlemail.com> | 2012-07-05 14:41:31 +0200 |
commit | 2cfa23e2a422edf711443ebe182c521249b0ddc6 (patch) | |
tree | 380c0502b6f6016cccf02628fb96fa78b284fa91 /xsl | |
parent | 0777ce33e444065ed8168bdbaaa7073f3e673681 (diff) | |
download | mutti-web-2cfa23e2a422edf711443ebe182c521249b0ddc6.tar.gz mutti-web-2cfa23e2a422edf711443ebe182c521249b0ddc6.tar.bz2 mutti-web-2cfa23e2a422edf711443ebe182c521249b0ddc6.zip |
layout.xsl: No need to have xmlns attribute in html tag
Since the namespace is already defined in the xsl:stylesheet tag.
Diffstat (limited to 'xsl')
-rw-r--r-- | xsl/layout.xsl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xsl/layout.xsl b/xsl/layout.xsl index 5f73044..5e4f677 100644 --- a/xsl/layout.xsl +++ b/xsl/layout.xsl @@ -7,7 +7,7 @@ <xsl:include href="common.xsl" /> <xsl:template match="s:html"> - <html xmlns="http://www.w3.org/1999/xhtml"> + <html> <head> <title> <xsl:text><![CDATA[Beratung & Controlling - Angelika Franzke - ]]></xsl:text> |