1

(3 replies, posted in Archive)

salut,

normalement dans le fichier profile.php une fonction empechant cela est active [ligne 723]
cela indique les mots interdits pour la section titre, par défault, la liste est en anglais puis traduit si tu as ajouté le module en francais [fr_common.php].

if ($user_title != '')
{
// A list of words that the title may not contain
// If $language == 'en', there will be some duplicates, but it's not the end of the world
$forbidden = array('Member', 'Moderator', 'Administrator', 'Banned', 'Guest', $lang_common['Member'], $lang_common['Moderator'], $lang_common['Administrator'], $lang_common['Banned'], $lang_common['Guest']);

if (in_array($user_title, $forbidden))
message($lang_profile['Forbidden title']);
}