Darathor
Citation :
But : Ajoute un lien vers la liste des messages postés par le membre sur le nombre de messages indiqué sous l'avatar.
Prérequis :
- [FIX] Recherche par user_id (1.0)
Auteur : Darathor (darathor@free.fr)
Version : 1.0 (18/01/2006)
Compatibilité phpBB : 2.0.19
Dans "viewtopic.php" :
Code :
#
# Trouver
#
$poster_posts = ( $postrow[$i]['user_id'] != ANONYMOUS ) ? $lang['Posts'] . ': ' . $postrow[$i]['user_posts'] : '';
#
# Remplacer par
#
// DEBUT MOD Postographie d'un membre depuis viewtopic
// -- DEBUT Enlevé
// $poster_posts = ( $postrow[$i]['user_id'] != ANONYMOUS ) ? $lang['Posts'] . ': ' . $postrow[$i]['user_posts'] : '';
// -- FIN Enlevé
$poster_posts = ( $postrow[$i]['user_id'] != ANONYMOUS ) ? $lang['Posts'] . ' : <a href="' . append_sid("search.$phpEx?user_id" . "=" . $poster_id) . '" title="' . sprintf($lang['Search_user_posts'], $poster) . '" class="gensmall">' . $postrow[$i]['user_posts'] . '</a>': '';
// FIN MOD Postographie d'un membre depuis viewtopic