Change the FIXME to the other way.
authorPlatonides <platonides@users.mediawiki.org>
Fri, 8 Oct 2010 22:51:03 +0000 (22:51 +0000)
committerPlatonides <platonides@users.mediawiki.org>
Fri, 8 Oct 2010 22:51:03 +0000 (22:51 +0000)
commit7b6afb1996ffe8d3b0f80b6140768fc01c2331d2
tree6a61a44e0a05777d40116cfac60a951d0cc61acd
parenta42cf7363208aafbebdaefd0ee657a268befdde4
Change the FIXME to the other way.
The issue is, php strtolower() calls tolower(3), which is locale sensitive.
Eg. LC_ALL='pt_BR.ISO-8859-1' php -r'echo strtolower("ÉÁÇÚÍ");'

Adding a call to setlocale(LC_ALL,'C'); in Setup.php may be a good idea.
includes/parser/Parser.php