Tomas Hajek - 2005-04-18

Logged In: YES
user_id=1122261

this is caused by a typo in the book-article.mod.xsl, line
around 440:

<xsl:when test="articleinfo/author">
<xsl:for-each select="artheader">
<xsl:call-template name="authorgroup"/>
</xsl:for-each>
</xsl:when>

correct is:
<xsl:when test="articleinfo/author">
<xsl:for-each select="articleinfo">
<xsl:call-template name="authorgroup"/>
</xsl:for-each>
</xsl:when>