From: Joshua Ferraro <[email protected]> XMLout needed the NoEscape option set
Signed-off-by: Daniel Sweeney <[email protected]> --- C4/External/Syndetics.pm | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/C4/External/Syndetics.pm b/C4/External/Syndetics.pm index 0b7de1d..ff4fb5b 100644 --- a/C4/External/Syndetics.pm +++ b/C4/External/Syndetics.pm @@ -178,7 +178,7 @@ sub get_syndetics_excerpt { # manipulate response USMARC VarFlds VarDFlds Notes Fld520 a my $excerpt; $excerpt = \...@{$response->{VarFlds}->{VarDFlds}->{Notes}->{Fld520}} if $response; - return XMLout($excerpt) if $excerpt; + return XMLout($excerpt, NoEscape => 1) if $excerpt; } sub get_syndetics_reviews { -- 1.5.6.5 _______________________________________________ Koha-patches mailing list [email protected] http://lists.koha.org/mailman/listinfo/koha-patches
