From b44e093fc4f83bf1e944cf076921644048a09bb8 Mon Sep 17 00:00:00 2001 From: Nigel Horne Date: Wed, 3 Jul 2024 14:57:02 -0400 Subject: [PATCH] Fix XML --- ged2site | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ged2site b/ged2site index 8fdc7c42..997b58e9 100755 --- a/ged2site +++ b/ged2site @@ -9123,8 +9123,9 @@ sub print_person $notes = lcfirst($notes) unless($notes =~ /^(RAF|Royal Navy)/); $notes =~ s/[\s\.]+$//; $notes =~ s/
/ /g; + $notes = wide_to_xml($notes); print $xml "\n\t\t\t\t", - "\n\t\t\t\t\t$notes", + "\n\t\t\t\t\t", wide_to_xml($notes), "\n\t\t\t\t"; $entry->{'notes'} = $notes; }