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 opacthemes / )
209
                              TrackClicks opacthemes 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 335-340 Link Here
335
    <xsl:param name="tag" />
335
    <xsl:param name="tag" />
336
    <xsl:param name="label" />
336
    <xsl:param name="label" />
337
    <xsl:param name="spanclass" />
337
    <xsl:param name="spanclass" />
338
    <xsl:variable name="IdRef" select="marc:sysprefs/marc:syspref[@name='IdRef']"/>
338
    <xsl:if test="marc:datafield[@tag=$tag]">
339
    <xsl:if test="marc:datafield[@tag=$tag]">
339
      <span class="results_summary author {$spanclass}">
340
      <span class="results_summary author {$spanclass}">
340
        <span class="label">
341
        <span class="label">
Lines 373-378 Link Here
373
                </xsl:if>
374
                </xsl:if>
374
              </xsl:for-each>
375
              </xsl:for-each>
375
            </a>
376
            </a>
377
            <xsl:if test="$IdRef">
378
              <xsl:if test="marc:subfield[@code=3]">
379
                <xsl:text> </xsl:text>
380
                <a>
381
                  <xsl:attribute name="href">
382
                    <xsl:text>/cgi-bin/koha/opac-idref.pl?unimarc3=</xsl:text>
383
                    <xsl:value-of select="marc:subfield[@code=3]"/>
384
                  </xsl:attribute>
385
                  <xsl:attribute name="title">IdRef</xsl:attribute>
386
                  <xsl:attribute name="rel">gb_page_center[600,500]</xsl:attribute>
387
                  <xsl:text>Idref</xsl:text>
388
                </a>
389
              </xsl:if>
390
            </xsl:if>
376
            <xsl:if test="not(position() = last())">
391
            <xsl:if test="not(position() = last())">
377
              <span style="padding: 3px;">
392
              <span style="padding: 3px;">
378
                <xsl:text>;</xsl:text>
393
                <xsl:text>;</xsl:text>
379
- 

Return to bug 8992