From 67d913243895ff56b007f7ae4b315b864b8d3e7e Mon Sep 17 00:00:00 2001
From: Tomas Cohen Arazi <tomascohen@gmail.com>
Date: Thu, 23 Aug 2012 12:58:52 -0300
Subject: [PATCH] Bug 6617 - Wrong first indicator value in test
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Content-Type: text/plain; charset="utf-8"

Testing the first indicator value=2 should be used for labeling 'Partial content'.

Sponsored-by: Universidad Nacional de Córdoba
---
 .../prog/en/xslt/MARC21slim2OPACDetail.xsl         |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/koha-tmpl/opac-tmpl/prog/en/xslt/MARC21slim2OPACDetail.xsl b/koha-tmpl/opac-tmpl/prog/en/xslt/MARC21slim2OPACDetail.xsl
index 489aee2..36780c4 100644
--- a/koha-tmpl/opac-tmpl/prog/en/xslt/MARC21slim2OPACDetail.xsl
+++ b/koha-tmpl/opac-tmpl/prog/en/xslt/MARC21slim2OPACDetail.xsl
@@ -577,7 +577,7 @@
             <xsl:when test="@ind1=1">
                 <span class="label">Incomplete contents:</span>
             </xsl:when>
-            <xsl:when test="@ind1=1">
+            <xsl:when test="@ind1=2">
                 <span class="label">Partial contents:</span>
             </xsl:when>
             <xsl:otherwise>
-- 
1.7.9.5