|
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 |
- |
|
|