http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7441
--- Comment #13 from Katrin Fischer <[email protected]> --- >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. _______________________________________________ Koha-bugs mailing list [email protected] http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs website : http://www.koha-community.org/ git : http://git.koha-community.org/ bugs : http://bugs.koha-community.org/
