diff options
author | Daniel Gruno <humbedooh@apache.org> | 2012-05-08 09:35:24 +0200 |
---|---|---|
committer | Daniel Gruno <humbedooh@apache.org> | 2012-05-08 09:35:24 +0200 |
commit | 98eb08645ebd52f69e974db11820ee29312c74db (patch) | |
tree | 8a5c26ab4949f8283bbfe90d4a082d5624e8f088 | |
parent | Updates. (diff) | |
download | apache2-98eb08645ebd52f69e974db11820ee29312c74db.tar.xz apache2-98eb08645ebd52f69e974db11820ee29312c74db.zip |
Small hack so the XSLT process won't turn <div></div> into <div/>, thus messing up the DOM tree.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1335366 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | docs/manual/style/xsl/common.xsl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/manual/style/xsl/common.xsl b/docs/manual/style/xsl/common.xsl index ed6a93a5e0..70f4500211 100644 --- a/docs/manual/style/xsl/common.xsl +++ b/docs/manual/style/xsl/common.xsl @@ -293,8 +293,8 @@ <div class="section"> <h2><a name="comments_section" id="comments_section"><xsl:value-of select="$message[@id='comments']" /></a></h2> <div class="warning"><strong>This section is experimental!</strong><br/>Comments placed here should not be expected -to last beyond the testing phase of this system, nor do we in any way guarantee that we'll read them.</div> -<div id="disqus_thread"></div> +to last beyond the testing phase of this system, nor do we in any way guarantee that we'll read them.</div>&lf; +<div id="disqus_thread">&lf;</div> <script type="text/javascript"> <xsl:text disable-output-escaping="yes"><![CDATA[<!--//--><![CDATA[//><!--]]></xsl:text> var lang = '<xsl:value-of select="$doclang"/>';<![CDATA[ |