[open-ils-commits] r10287 - trunk/Open-ILS/src/extras

svn at svn.open-ils.org svn at svn.open-ils.org
Wed Aug 6 22:35:54 EDT 2008


Author: miker
Date: 2008-08-06 22:35:48 -0400 (Wed, 06 Aug 2008)
New Revision: 10287

Modified:
   trunk/Open-ILS/src/extras/org_tree_html_options.pl
Log:
used decomposed characters -- mostly for consistency with other recent changes

Modified: trunk/Open-ILS/src/extras/org_tree_html_options.pl
===================================================================
--- trunk/Open-ILS/src/extras/org_tree_html_options.pl	2008-08-07 02:34:51 UTC (rev 10286)
+++ trunk/Open-ILS/src/extras/org_tree_html_options.pl	2008-08-07 02:35:48 UTC (rev 10287)
@@ -42,7 +42,7 @@
         $stuff =~ s/\</&lt;/og;
         $stuff =~ s/\>/&gt;/og;
         $stuff =~ s/\&/&amp;/og;
-        $stuff = NFC($stuff);
+        $stuff = NFD($stuff);
         $stuff =~ s/([\x{0080}-\x{fffd}])/sprintf('&#x%X;',ord($1))/sgoe;
         return $stuff;
 }



More information about the open-ils-commits mailing list