Drupal: oprava XSL odstavců: správné zpracování vnořených značek (např. a/img) v mešuge odstavcích.
1.1 --- a/helpers/mimeXhtmlPart-make-paragraphs.xsl Mon Oct 17 00:55:48 2011 +0200
1.2 +++ b/helpers/mimeXhtmlPart-make-paragraphs.xsl Mon Oct 17 00:56:59 2011 +0200
1.3 @@ -4,11 +4,10 @@
1.4 xmlns:h="http://www.w3.org/1999/xhtml"
1.5 xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
1.6 xmlns:fn="http://www.w3.org/2005/xpath-functions"
1.7 - xmlns:svg="http://www.w3.org/2000/svg"
1.8 xmlns:xs="http://www.w3.org/2001/XMLSchema"
1.9 xmlns:o="https://trac.frantovo.cz/odstavcovac-TODO-XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX-/wiki/xmlns/odstavcovac"
1.10 exclude-result-prefixes="fn h xs o">
1.11 - <xsl:output method="xml" indent="yes" encoding="UTF-8"/>
1.12 + <xsl:output method="xml" indent="yes" encoding="UTF-8" omit-xml-declaration="yes"/>
1.13
1.14 <xsl:param name="cssTřída"/>
1.15
1.16 @@ -36,7 +35,7 @@
1.17 <xsl:template match="*" mode="kopíruj">
1.18 <xsl:element name="{name()}">
1.19 <xsl:copy-of select="@*"/>
1.20 - <xsl:apply-templates/>
1.21 + <xsl:apply-templates mode="kopíruj"/>
1.22 </xsl:element>
1.23 </xsl:template>
1.24