Bug 20132

Summary: Source: vs. In: in result list and detail pages
Product: Koha Reporter: Katrin Fischer <katrin.fischer>
Component: MARC Bibliographic data supportAssignee: Bugs List <koha-bugs>
Status: NEW --- QA Contact: Testopia <testopia>
Severity: enhancement    
Priority: P5 - low    
Version: Main   
Hardware: All   
OS: All   
Change sponsored?: --- Patch complexity: ---
Documentation contact: Documentation submission:
Text to go in the release notes:
Version(s) released in:

Description Katrin Fischer 2018-02-02 15:33:54 UTC
In the OPAC we display 773$t in the result list as "Source"

 598     <xsl:if test="marc:datafield[@tag=773]">
 599         <xsl:for-each select="marc:datafield[@tag=773]">
 600             <xsl:if test="marc:subfield[@code='t']">
 601     <span class="results_summary source">
 602     <span class="label">Source: </span>
 603             <xsl:value-of select="marc:subfield[@code='t']"/>
 604     </span>
 605             </xsl:if>
 606         </xsl:for-each>
 607     </xsl:if>

On the detail page the same information is labelled as In: and shows many more subfields.

We should improve both displays to be the same in detal/result in OPAC/intranet.