]> granicus.if.org Git - docbook-dsssl/commitdiff
Add support for info/title as well as title on task.
authorBob Stayton <bobs@sagehill.net>
Sat, 12 May 2012 23:42:32 +0000 (23:42 +0000)
committerBob Stayton <bobs@sagehill.net>
Sat, 12 May 2012 23:42:32 +0000 (23:42 +0000)
xsl/html/task.xsl

index 3524adbf48dd96b5a17be112929b8138c7b12983..7e9bd7889b056eb7b635a2fcc447d5ef54a0f9a2 100644 (file)
     <xsl:call-template name="id.attribute"/>
     <xsl:call-template name="anchor"/>
 
-    <xsl:if test="title and $placement = 'before'">
+    <xsl:if test="(title or info/title) and $placement = 'before'">
       <xsl:call-template name="formal.object.heading"/>
     </xsl:if>
 
     <xsl:apply-templates select="$preamble"/>
 
-    <xsl:if test="title and $placement != 'before'">
+    <xsl:if test="(title or info/title) and $placement != 'before'">
       <xsl:call-template name="formal.object.heading"/>
     </xsl:if>
   </div>