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

--- Comment #53 from David Cook <dc...@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.
_______________________________________________
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
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/

Reply via email to