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