WP 2.5
AIOSOE Version 1.4.6.7
define (’WPLANG’, ‘fr_FR’); set into my wp-config.php
UTF-8
Keywords display incorrectly when using éèàùç, etc. caracters. i.e "Intégration" translate as "int?gration".
Edit/modify all_in_one_seo_pack.php, line 717, to use mb_strtolower in place of strtolower:
//FVE ori $small_keywords[] = strtolower($word);
$small_keywords[] = mb_strtolower($word);
Works fine for me;-). Keywords as "Intégration" now correctly display as "intégration".