Astuce pour afficher dans les statistiques, en plus du nombre total de messages, le nombre total de sujets et le nombre total de réponses.
Exemple:
QUOTE
Nos membres ont écrit un total de 6 682 messages

Devient:
QUOTE
Nos membres ont écrit un total de 6 682 messages dont 786 sujets et 5 896 réponses

Dans sources/board.php
Recherchez :
QUOTE
$total_posts = $stats['TOTAL_REPLIES'] + $stats['TOTAL_TOPICS'];
    
  $total_posts        = $std->do_number_format($total_posts);

  $stats['MEM_COUNT'] = $std->do_number_format($stats['MEM_COUNT']);

  $link = $ibforums->base_url."showuser=".$stats['LAST_MEM_ID'];

  $ibforums->lang['total_word_string'] = str_replace( "<#posts#>" , "$total_posts"          , $ibforums->lang['total_word_string'] );

Remplacez par : (ou ajoutez ce qui est en bleu)
QUOTE
QUOTE
$total_posts = $stats['TOTAL_REPLIES'] + $stats['TOTAL_TOPICS'];
$total_topics = $stats['TOTAL_TOPICS'];
  $total_replies = $stats['TOTAL_REPLIES'];

    
  $total_posts        = $std->do_number_format($total_posts);
  $total_topics        = $std->do_number_format($total_topics);
  $total_replies        = $std->do_number_format($total_replies);


  $stats['MEM_COUNT'] = $std->do_number_format($stats['MEM_COUNT']);

  $link = $ibforums->base_url."showuser=".$stats['LAST_MEM_ID'];

  $ibforums->lang['total_word_string'] = str_replace( "<#posts#>" , "$total_posts"          , $ibforums->lang['total_word_string'] );
$ibforums->lang['total_word_string'] = str_replace( "<#topics#>" , "$total_topics"          , $ibforums->lang['total_word_string'] );
  $ibforums->lang['total_word_string'] = str_replace( "<#replies#>" , "$total_replies"          , $ibforums->lang['total_word_string'] );


Dans lang/fr/lang_board.php
Recherchez :
QUOTE
'total_word_string'  => "Nos membres ont &eacute;crit un total de <b><#posts#></b> messages

Remplacez par : (ou ajoutez ce qui est en bleu)
QUOTE
'total_word_string'  => "Nos membres ont &eacute;crit un total de <b><#posts#></b> messages dont <b><#topics#></b> sujets et <b><#replies#></b> r&eacute;ponses


Une astuce de foxer