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

(-)a/C4/Search.pm (-3 / +3 lines)
Lines 1953-1960 sub searchResults { Link Here
1953
        $oldbiblio->{edition} = $oldbiblio->{editionstatement};
1953
        $oldbiblio->{edition} = $oldbiblio->{editionstatement};
1954
        $oldbiblio->{description} = $itemtypes{ $oldbiblio->{itemtype} }->{translated_description};
1954
        $oldbiblio->{description} = $itemtypes{ $oldbiblio->{itemtype} }->{translated_description};
1955
 # Build summary if there is one (the summary is defined in the itemtypes table)
1955
 # Build summary if there is one (the summary is defined in the itemtypes table)
1956
 # FIXME: is this used anywhere, I think it can be commented out? -- JF
1956
1957
        if ( $itemtypes{ $oldbiblio->{itemtype} }->{summary} ) {
1957
        # FIXME: this is only used in the deprecated non-XLST opac results
1958
        if ( !$xslfile && $is_opac && $itemtypes{ $oldbiblio->{itemtype} }->{summary} ) {
1958
            my $summary = $itemtypes{ $oldbiblio->{itemtype} }->{summary};
1959
            my $summary = $itemtypes{ $oldbiblio->{itemtype} }->{summary};
1959
            my @fields  = $marcrecord->fields();
1960
            my @fields  = $marcrecord->fields();
1960
1961
1961
- 

Return to bug 23663