http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7441 --- Comment #13 from Katrin Fischer <katrin.fischer@bsz-bw.de> ---
From reading the error messages I suspect it's this part:
<xsl:key name="item-by-status" match="items:item" use="items:status"/> - <xsl:key name="item-by-status-and-branch" match="items:item" use="concat(items:status, ' ', items:holdingbranch)"/> + <xsl:if test="$OPACResultsBranchXSLT='holdingbranch'"> + <xsl:key name="item-by-status-and-branch" match="items:item" use="concat(items:status, ' ', items:holdingbranch)"/> + </xsl:if> + <xsl:if test="$OPACResultsBranchXSLT='homebranch'"> + <xsl:key name="item-by-status-and-branch" match="items:item" use="concat(items:status, ' ', items:homebranch)"/> + </xsl:if> -- You are receiving this mail because: You are watching all bug changes.