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

(-)a/C4/XSLT.pm (-2 / +1 lines)
Lines 284-290 sub XSLTParse4Display { Link Here
284
             $variables->{ComponentPartQuery} = $search_query;
284
             $variables->{ComponentPartQuery} = $search_query;
285
285
286
             my @componentPartRecordXML = ('<componentPartRecords>');
286
             my @componentPartRecordXML = ('<componentPartRecords>');
287
             for my $cb ( @{ $biblio->get_marc_components($max_results) } ) {
287
             for my $cb ( @{ $components } ) {
288
                 if( ref $cb eq 'MARC::Record'){
288
                 if( ref $cb eq 'MARC::Record'){
289
                     $cb = $cb->as_xml_record();
289
                     $cb = $cb->as_xml_record();
290
                 } else {
290
                 } else {
291
- 

Return to bug 11175