]> granicus.if.org Git - docbook-dsssl/commitdiff
Pass allow-anchors through properly
authorNorman Walsh <ndw@nwalsh.com>
Wed, 1 Aug 2001 00:43:27 +0000 (00:43 +0000)
committerNorman Walsh <ndw@nwalsh.com>
Wed, 1 Aug 2001 00:43:27 +0000 (00:43 +0000)
xsl/common/gentext.xsl

index 9a173bc8f749f17149ddaae07e1f386ef46f9e69..5506216c26192ffb002d85a35d2c2e042361f273 100644 (file)
@@ -97,6 +97,7 @@
 <!-- ============================================================ -->
 
 <xsl:template match="*" mode="object.title.markup">
+  <xsl:param name="allow-anchors" select="0"/>
   <xsl:variable name="template">
     <xsl:apply-templates select="." mode="object.title.template"/>
   </xsl:variable>
 -->
 
   <xsl:call-template name="substitute-markup">
-    <xsl:with-param name="allow-anchors" select="1"/>
+    <xsl:with-param name="allow-anchors" select="$allow-anchors"/>
     <xsl:with-param name="template" select="$template"/>
   </xsl:call-template>
 </xsl:template>