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

(-)a/catalogue/detail.pl (-2 / +2 lines)
Lines 39-45 use C4::Reserves; Link Here
39
use C4::Serials qw( CountSubscriptionFromBiblionumber SearchSubscriptions GetLatestSerials );
39
use C4::Serials qw( CountSubscriptionFromBiblionumber SearchSubscriptions GetLatestSerials );
40
use C4::XISBN qw( get_xisbns );
40
use C4::XISBN qw( get_xisbns );
41
use C4::External::Amazon qw( get_amazon_tld );
41
use C4::External::Amazon qw( get_amazon_tld );
42
use C4::Search qw( z3950_search_args enabled_staff_search_views );
42
use C4::Search qw( z3950_search_args enabled_staff_search_views new_record_from_zebra );
43
use C4::Tags qw( get_tags );
43
use C4::Tags qw( get_tags );
44
use C4::XSLT qw( XSLTParse4Display );
44
use C4::XSLT qw( XSLTParse4Display );
45
use Koha::DateUtils qw( format_sqldatetime );
45
use Koha::DateUtils qw( format_sqldatetime );
Lines 217-223 if ( $showcomp eq 'both' || $showcomp eq 'staff' ) { Link Here
217
    if ( my $components = $biblio->get_marc_components(300) ) {
217
    if ( my $components = $biblio->get_marc_components(300) ) {
218
        my $parts;
218
        my $parts;
219
        for my $part ( @{$components} ) {
219
        for my $part ( @{$components} ) {
220
            $part = MARC::Record->new_from_xml( $part, 'UTF-8' );
220
            $part = C4::Search::new_record_from_zebra( 'biblioserver', $part );
221
221
222
            push @{$parts},
222
            push @{$parts},
223
              XSLTParse4Display(
223
              XSLTParse4Display(
(-)a/opac/opac-detail.pl (-3 / +2 lines)
Lines 32-37 use C4::Koha qw( Link Here
32
    GetNormalizedOCLCNumber
32
    GetNormalizedOCLCNumber
33
    GetNormalizedUPC
33
    GetNormalizedUPC
34
);
34
);
35
use C4::Search qw( new_record_from_zebra );
35
use C4::Serials qw( CountSubscriptionFromBiblionumber SearchSubscriptions GetLatestSerials );
36
use C4::Serials qw( CountSubscriptionFromBiblionumber SearchSubscriptions GetLatestSerials );
36
use C4::Output qw( parametrized_url output_html_with_http_headers );
37
use C4::Output qw( parametrized_url output_html_with_http_headers );
37
use C4::Biblio qw(
38
use C4::Biblio qw(
Lines 233-239 if ($OpacBrowseResults) { Link Here
233
my $session = get_session($query->cookie("CGISESSID"));
234
my $session = get_session($query->cookie("CGISESSID"));
234
my %paging = (previous => {}, next => {});
235
my %paging = (previous => {}, next => {});
235
if ($session->param('busc')) {
236
if ($session->param('busc')) {
236
    use C4::Search;
237
    use URI::Escape qw( uri_escape_utf8 uri_unescape );
237
    use URI::Escape qw( uri_escape_utf8 uri_unescape );
238
238
239
    # Rebuild the string to store on session
239
    # Rebuild the string to store on session
Lines 663-669 if ( $showcomp eq 'both' || $showcomp eq 'opac' ) { Link Here
663
    if ( my $components = $biblio->get_marc_components(300) ) {
663
    if ( my $components = $biblio->get_marc_components(300) ) {
664
        my $parts;
664
        my $parts;
665
        for my $part ( @{$components} ) {
665
        for my $part ( @{$components} ) {
666
            $part = MARC::Record->new_from_xml( $part, 'UTF-8' );
666
            $part = C4::Search::new_record_from_zebra( 'biblioserver', $part );
667
667
668
            push @{$parts},
668
            push @{$parts},
669
              XSLTParse4Display(
669
              XSLTParse4Display(
670
- 

Return to bug 11175