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

(-)a/C4/Search.pm (-1 / +1 lines)
Lines 1639-1645 sub searchResults { Link Here
1639
    });
1639
    });
1640
1640
1641
    #Build branchnames hash
1641
    #Build branchnames hash
1642
    my %branches = map { $_->branchcode => $_->branchname } Koha::Libraries->search({}, { order_by => 'branchname' })->as_list;
1642
    my %branches = map { $_->branchcode => $_->branchname } Koha::Libraries->search({}, { order_by => 'branchname' });
1643
1643
1644
    my $description = $is_opac ? 'opac_description' : 'lib';
1644
    my $description = $is_opac ? 'opac_description' : 'lib';
1645
    my $shelflocations =
1645
    my $shelflocations =
(-)a/C4/XSLT.pm (-1 / +2 lines)
Lines 249-254 sub XSLTParse4Display { Link Here
249
    my $hidden_items = $params->{hidden_items} || [];
249
    my $hidden_items = $params->{hidden_items} || [];
250
    my $variables    = $params->{xslt_variables};
250
    my $variables    = $params->{xslt_variables};
251
    my $items_rs     = $params->{items_rs};
251
    my $items_rs     = $params->{items_rs};
252
    my $items        = $params->{items};
252
253
253
    die "Mandatory \$params->{xsl_syspref} was not provided, called with biblionumber $params->{biblionumber}"
254
    die "Mandatory \$params->{xsl_syspref} was not provided, called with biblionumber $params->{biblionumber}"
254
        if not defined $params->{xsl_syspref};
255
        if not defined $params->{xsl_syspref};
Lines 369-374 sub buildKohaItemsNamespace { Link Here
369
        }
370
        }
370
        my $homebranch     = xml_escape( $item->{homebranch} );
371
        my $homebranch     = xml_escape( $item->{homebranch} );
371
        my $holdingbranch  = xml_escape( $item->{holdingbranch} );
372
        my $holdingbranch  = xml_escape( $item->{holdingbranch} );
373
        my $resultbranch   = xml_escape( $item->{resultbranch});
372
        my $location       = xml_escape( $item->{location} );
374
        my $location       = xml_escape( $item->{location} );
373
        my $ccode          = xml_escape( $item->{ccode} );
375
        my $ccode          = xml_escape( $item->{ccode} );
374
        my $itemcallnumber = xml_escape($item->{itemcallnumber});
376
        my $itemcallnumber = xml_escape($item->{itemcallnumber});
375
- 

Return to bug 28702