@@ -, +, @@ --- C4/XSLT.pm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) --- a/C4/XSLT.pm +++ a/C4/XSLT.pm @@ -451,10 +451,10 @@ sub buildKohaHoldingsNamespace { my $ccode = ""; my $xml = ''; while (my $holding = $holdings->next()) { - my $holdingbranch = $holding->holdingbranch ? xml_escape($branches{$holding->holdingbranch}) : ''; - my $location = $holding->location ? xml_escape($shelflocations->{$holding->location} || $holding->location) : ''; - my $callnumber = xml_escape($holding->callnumber); - my $suppress = xml_escape($holding->suppress || '0'); + my $holdingbranch = $holding->holdingbranch ? C4::Koha::xml_escape($branches{$holding->holdingbranch}) : ''; + my $location = $holding->location ? C4::Koha::xml_escape($shelflocations->{$holding->location} || $holding->location) : ''; + my $callnumber = C4::Koha::xml_escape($holding->callnumber); + my $suppress = C4::Koha::xml_escape($holding->suppress || '0'); $xml .= "" . "$holdingbranch" --