[Koha-bugs] [Bug 5079] Make display of shelving location and call number in XSLT results controlled by sysprefs

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Fri May 9 02:32:56 CEST 2014


http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5079

--- Comment #53 from David Cook <dcook at prosentient.com.au> ---
To clarify point #1, I was referring to these tests:

<span class="label">Location(s): </span>
<xsl:when test="count(key('item-by-status', 'available'))>0">

<xsl:when test="count(key('item-by-status', 'reference'))>0">

They should be:

<xsl:if test="count(key('item-by-status', 'available'))>0">

<xsl:if test="count(key('item-by-status', 'reference'))>0">

Since we want to be able to trigger both.

--

This whole block of code is wrapped in an unnecessary xsl:choose as well...

-- 
You are receiving this mail because:
You are watching all bug changes.


More information about the Koha-bugs mailing list