Bottom links were not correctly treated as UTF-8 so some special
characters were not corerctly displayed (in french for exemple, the
string Préférence has accents messed up)
--
Daniel Berteaud
FIREWALL-SERVICES SARL.
Société de Services en Logiciels Libres
Technopôle Montesquieu
33650 MARTILLAC
Tel : 05 56 64 15 32
Fax : 05 56 64 15 32
Web : http://www.firewall-services.com
diff -Nur -x '*.orig' -x '*.rej' dl-0.11/htdocs/include/pages.php mezzanine_patched_dl-0.11/htdocs/include/pages.php
--- dl-0.11/htdocs/include/pages.php 2013-05-26 14:24:42.000000000 +0200
+++ mezzanine_patched_dl-0.11/htdocs/include/pages.php 2013-11-18 21:57:39.721302846 +0100
@@ -50,7 +50,7 @@
if($first) $first = false;
else echo ", ";
- $title = htmlentities($title);
+ $title = htmlEntUTF8($title);
if($page == $act) echo "<span>$title</span>";
else echo "<a href=\"" . pageLink($page) . "\">$title</a>";
}