A l'attention des modos : Je poste ici, car c'est écrit "Utilisation et personnalisation", j'espère ne pas me tromper

Voila, je voudrais avoir des boutons distincts pour Forum Vérouillé et Sujet Vérouillé sur Prosilver
J'ai créé les boutons, j'ai modifié dans imageset.cfg :
- Code: Tout sélectionner
img_button_topic_locked = button_topic_locked.png*21*83 img_button_forum_locked = button_forum_locked.png*21*83
Modifié dans buttons.css
- Code: Tout sélectionner
.locked-topic-icon span { background: transparent none 0 0 no-repeat; } . . . .buttons div.locked-icon { width: {IMG_BUTTON_FORUM_LOCKED_WIDTH}px; height: {IMG_BUTTON_FORUM_LOCKED_HEIGHT}px; } .buttons div.locked-topic-icon { width: {IMG_BUTTON_TOPIC_LOCKED_WIDTH}px; height: {IMG_BUTTON_TOPIC_LOCKED_HEIGHT}px; }
Modifié dans colors.css
- Code: Tout sélectionner
.locked-icon span { background-image: url("{IMG_BUTTON_FORUM_LOCKED_SRC}"); } .locked-topic-icon span { background-image: url("{IMG_BUTTON_TOPIC_LOCKED_SRC}"); }
Modifié dans viewtopic_body.html
- Code: Tout sélectionner
<div class="<!-- IF S_IS_LOCKED -->locked-topic-icon<!-- ELSE -->post-icon<!-- ENDIF -->">
Modifié dans viewtopic.php
- Code: Tout sélectionner
'POST_IMG' => ($topic_data['forum_status'] == ITEM_LOCKED) ? $user->img('button_forum_locked', 'FORUM_LOCKED') : $user->img('button_topic_new', 'POST_NEW_TOPIC'),
Modifié dans viewforum.php
- Code: Tout sélectionner
'POST_IMG' => ($forum_data['forum_status'] == ITEM_LOCKED) ? $user->img('button_forum_locked', $post_alt) : $user->img('button_topic_new', $post_alt),
Ajouté dans includes/acp_language.php
- Code: Tout sélectionner
$valid_localized = array( ......., 'button_forum_locked'......)
Ajouté dans includes/acp_styles.php
- Code: Tout sélectionner
'buttons' => array( ........., 'button_forum_locked'......)
Tout est sur le FTP, tout le style rafraîchi et mon cache vidé ............. et le bouton ne s'affiche pas


Qu'ai-je oublié de faire ou mal fait ?
Faut-il faire une requête ?
Quelle galère ces div et class


Merci