Falls back to straight MARC21 transformation when a target does
not return a given record embedded in an opacRecord as ususally
expected when using OPAC request syntax
</xsl:template>
<xsl:template match="/">
- <xsl:apply-templates select="opacRecord/bibliographicRecord"/>
+ <xsl:choose>
+ <xsl:when test="opacRecord">
+ <xsl:apply-templates select="opacRecord/bibliographicRecord"/>
+ </xsl:when>
+ <xsl:otherwise>
+ <xsl:apply-templates/>
+ </xsl:otherwise>
+ </xsl:choose>
</xsl:template>
</xsl:stylesheet>