From: miker Date: Thu, 7 Aug 2008 02:35:48 +0000 (+0000) Subject: used decomposed characters -- mostly for consistency with other recent changes X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=72d81958cc461231a5d366921651b902518099cf;p=Evergreen.git used decomposed characters -- mostly for consistency with other recent changes git-svn-id: svn://svn.open-ils.org/ILS/trunk@10287 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- diff --git a/Open-ILS/src/extras/org_tree_html_options.pl b/Open-ILS/src/extras/org_tree_html_options.pl index 4aaa8b9531..475ead0346 100644 --- a/Open-ILS/src/extras/org_tree_html_options.pl +++ b/Open-ILS/src/extras/org_tree_html_options.pl @@ -42,7 +42,7 @@ sub entityize { $stuff =~ s/\/>/og; $stuff =~ s/\&/&/og; - $stuff = NFC($stuff); + $stuff = NFD($stuff); $stuff =~ s/([\x{0080}-\x{fffd}])/sprintf('&#x%X;',ord($1))/sgoe; return $stuff; }