@@ -, +, @@ --- C4/XSLT.pm | 5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) --- a/C4/XSLT.pm +++ a/C4/XSLT.pm @@ -207,10 +207,11 @@ sub buildKohaItemsNamespace { $status = "available"; } my $homebranch = $branches->{$item->{homebranch}}->{'branchname'}; + my $itemcallnumber = $item->{itemcallnumber}; + $itemcallnumber =~ s/\&/\&\;/g; $xml.= "$homebranch". "$status". - (defined $item->{'itemcallnumber'} ? "".$item->{'itemcallnumber'}."" - : "") + "".$itemcallnumber."" . ""; } --