|
Lines 177-183
sub XSLTParse4Display {
Link Here
|
| 177 |
} |
177 |
} |
| 178 |
|
178 |
|
| 179 |
# grab the XML, run it through our stylesheet, push it out to the browser |
179 |
# grab the XML, run it through our stylesheet, push it out to the browser |
| 180 |
my $record = transformMARCXML4XSLT($biblionumber, $orig_record); |
180 |
my $record = $orig_record->clone(); # work on a copy |
|
|
181 |
$record = transformMARCXML4XSLT($biblionumber, $record); |
| 181 |
#return $record->as_formatted(); |
182 |
#return $record->as_formatted(); |
| 182 |
my $itemsxml = buildKohaItemsNamespace($biblionumber, $hidden_items); |
183 |
my $itemsxml = buildKohaItemsNamespace($biblionumber, $hidden_items); |
| 183 |
my $xmlrecord = $record->as_xml(C4::Context->preference('marcflavour')); |
184 |
my $xmlrecord = $record->as_xml(C4::Context->preference('marcflavour')); |
| 184 |
- |
|
|