View | Details | Raw Unified | Return to bug 8992
Collapse All | Expand All

(-)a/C4/XSLT.pm (-1 / +1 lines)
Lines 206-212 sub XSLTParse4Display { Link Here
206
                              UseControlNumber IntranetBiblioDefaultView BiblioDefaultView
206
                              UseControlNumber IntranetBiblioDefaultView BiblioDefaultView
207
                              singleBranchMode OPACItemLocation DisplayIconsXSLT
207
                              singleBranchMode OPACItemLocation DisplayIconsXSLT
208
                              AlternateHoldingsField AlternateHoldingsSeparator
208
                              AlternateHoldingsField AlternateHoldingsSeparator
209
                              TrackClicks / )
209
                              TrackClicks IdRef / )
210
    {
210
    {
211
        my $sp = C4::Context->preference( $syspref );
211
        my $sp = C4::Context->preference( $syspref );
212
        next unless defined($sp);
212
        next unless defined($sp);
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/xslt/UNIMARCslimUtils.xsl (-1 / +15 lines)
Lines 316-321 Link Here
316
    <xsl:param name="tag" />
316
    <xsl:param name="tag" />
317
    <xsl:param name="label" />
317
    <xsl:param name="label" />
318
    <xsl:param name="spanclass" />
318
    <xsl:param name="spanclass" />
319
    <xsl:variable name="IdRef" select="marc:sysprefs/marc:syspref[@name='IdRef']"/>
319
    <xsl:if test="marc:datafield[@tag=$tag]">
320
    <xsl:if test="marc:datafield[@tag=$tag]">
320
      <span class="results_summary author {$spanclass}">
321
      <span class="results_summary author {$spanclass}">
321
        <span class="label">
322
        <span class="label">
Lines 354-359 Link Here
354
                </xsl:if>
355
                </xsl:if>
355
              </xsl:for-each>
356
              </xsl:for-each>
356
            </a>
357
            </a>
358
            <xsl:if test="$IdRef">
359
              <xsl:if test="marc:subfield[@code=3]">
360
                <xsl:text> </xsl:text>
361
                <a>
362
                  <xsl:attribute name="href">
363
                    <xsl:text>/cgi-bin/koha/opac-idref.pl?unimarc3=</xsl:text>
364
                    <xsl:value-of select="marc:subfield[@code=3]"/>
365
                  </xsl:attribute>
366
                  <xsl:attribute name="title">IdRef</xsl:attribute>
367
                  <xsl:attribute name="rel">gb_page_center[600,500]</xsl:attribute>
368
                  <xsl:text>Idref</xsl:text>
369
                </a>
370
              </xsl:if>
371
            </xsl:if>
357
            <xsl:if test="not(position() = last())">
372
            <xsl:if test="not(position() = last())">
358
              <span style="padding: 3px;">
373
              <span style="padding: 3px;">
359
                <xsl:text>;</xsl:text>
374
                <xsl:text>;</xsl:text>
360
- 

Return to bug 8992