not getting output. Cause:: Oversight in XPath expression caused
Author and friends to be found only if they were direct children
of *info. Fix:: Updated XPath expression to check for all Author
etc. descendants, not just direct children.
Closes bug #
1447026. Thanks to Daniel Leidert for reporting.
</xsl:call-template>
<xsl:text>" </xsl:text>
- <xsl:for-each select="author|editor|othercredit">
+ <xsl:for-each select=".//author|.//editor|.//othercredit">
<xsl:apply-templates select="." mode="authorsect"/>
</xsl:for-each>