Bug 4057 Fix spacing in XSLT OPAC display for 245 subfield f

If a 245 has a subfield f (or any of the displayed fgknps subfields after a, b,
or h) there is no spacing and the display runs together.  This happens in both
the XSLT results list and the XSLT individual title display.  I've added a
space between the a, b, h displays and the beginning of the fgknps set.
This commit is contained in:
Jane Wagner 2010-01-22 11:59:48 -05:00 committed by Henri-Damien LAURENT
parent b5533726ec
commit 4afcc03655
2 changed files with 2 additions and 0 deletions

View file

@ -85,6 +85,7 @@
<xsl:with-param name="codes">h</xsl:with-param> <xsl:with-param name="codes">h</xsl:with-param>
</xsl:call-template> </xsl:call-template>
</xsl:if> </xsl:if>
<xsl:text> </xsl:text>
<xsl:call-template name="subfieldSelect"> <xsl:call-template name="subfieldSelect">
<xsl:with-param name="codes">fgknps</xsl:with-param> <xsl:with-param name="codes">fgknps</xsl:with-param>
</xsl:call-template> </xsl:call-template>

View file

@ -410,6 +410,7 @@
<xsl:with-param name="codes">h</xsl:with-param> <xsl:with-param name="codes">h</xsl:with-param>
</xsl:call-template> </xsl:call-template>
</xsl:if> </xsl:if>
<xsl:text> </xsl:text>
<xsl:call-template name="subfieldSelect"> <xsl:call-template name="subfieldSelect">
<xsl:with-param name="codes">fgknps</xsl:with-param> <xsl:with-param name="codes">fgknps</xsl:with-param>
</xsl:call-template> </xsl:call-template>