diff --git a/library/Class/Indexation.php b/library/Class/Indexation.php
index 65a27098db2c272fc25a9020cbdb98a529d4c571..944c597be03fa660d9f9845e5aa3372fc51cfc2e 100644
--- a/library/Class/Indexation.php
+++ b/library/Class/Indexation.php
@@ -158,6 +158,7 @@ class Class_Indexation {
 
 	/** Transformation en majuscules */
 	public function alphaMaj($chaine) {
+		return iconv("UTF-8", "ascii//TRANSLIT", strtoupper($chaine));
 		$chaine = utf8_decode($chaine);
 		$new = '';
 		for ($i=0; $i < strLen($chaine); $i++)	{