1
0
Fork 0
mirror of https://github.com/Nioux/AideDeJeu.git synced 2025-12-22 01:53:24 +00:00

Remis accents dans id

This commit is contained in:
Yan Maniez 2018-06-22 14:58:23 +02:00
parent 10a3d0c945
commit 4fa772aa37
2 changed files with 111 additions and 110 deletions

View file

@ -60,7 +60,8 @@ namespace AideDeJeu.Tools
public static string IdFromName(string name)
{
return RemoveDiacritics(name.ToLower().Replace(" ", "-").Replace("\'",""));
return name.ToLower().Replace(" ", "-").Replace("\'","");
//return RemoveDiacritics(name.ToLower().Replace(" ", "-").Replace("\'", ""));
}