@@ -, +, @@ av --- C4/XSLT.pm | 4 ++++ 1 file changed, 4 insertions(+) --- a/C4/XSLT.pm +++ a/C4/XSLT.pm @@ -104,6 +104,10 @@ sub transformMARCXML4XSLT { $updated = 1; } } + elsif ( $category eq "cn_source" ) { + my $source = GetClassSource($value); + return $source ? $source->{description} : q||; + } } push( @new_subfields, $letter, $value ); } --