Darathor
Citation :
But : Déplace la ligne "Dernière édition par ... le ...; édité n fois" à un endroit moins encombrant (espace vide à côté des icones "profil", "MP", etc).
Remarque :
La couleur de l'icône ICQ variable selon la présence (assez peu utile à mon goût et buguant parfois) est supprimée.
Auteur : Darathor (darathor@free.fr)
Version : 1.0 (18/01/2006)
Compatibilité phpBB : 2.0.19
Dans "viewtopic.php" :
Code :
#
# Trouver
#
$l_edited_by = '<br /><br />' . sprintf($l_edit_time_total, $poster, create_date($board_config['default_dateformat'], $postrow[$i]['post_edit_time'], $board_config['board_timezone']), $postrow[$i]['post_edit_count']);
#
# Remplacer pas
#
// DEBUT MOD Déplacement du message d'édition
// -- DEBUT Enlevé
// $l_edited_by = '<br /><br />' . sprintf($l_edit_time_total, $poster, create_date($board_config['default_dateformat'], $postrow[$i]['post_edit_time'], $board_config['board_timezone']), $postrow[$i]['post_edit_count']);
// -- FIN Enlevé
$l_edited_by = sprintf($l_edit_time_total, $poster, create_date($board_config['default_dateformat'], $postrow[$i]['post_edit_time'], $board_config['board_timezone']), $postrow[$i]['post_edit_count']);
// FIN MOD Déplacement du message d'édition
Dans "viewtopic_body.tpl" :
Code :
#
# Trouver dans une ligne et enlever
#
<span class="gensmall">{postrow.EDITED_MESSAGE}</span>
#
# Trouver
#
<td class="{postrow.ROW_CLASS}" width="100%" height="28" valign="bottom" nowrap="nowrap"><table cellspacing="0" cellpadding="0" border="0" height="18" width="18">
<tr>
<td valign="middle" nowrap="nowrap">{postrow.PROFILE_IMG} {postrow.PM_IMG} {postrow.EMAIL_IMG} {postrow.WWW_IMG} {postrow.AIM_IMG} {postrow.YIM_IMG} {postrow.MSN_IMG}<script language="JavaScript" type="text/javascript"><!--
if ( navigator.userAgent.toLowerCase().indexOf('mozilla') != -1 && navigator.userAgent.indexOf('5.') == -1 && navigator.userAgent.indexOf('6.') == -1 )
document.write(' {postrow.ICQ_IMG}');
else
document.write('</td><td> </td><td valign="top" nowrap="nowrap"><div style="position:relative"><div style="position:absolute">{postrow.ICQ_IMG}</div><div style="position:absolute;left:3px;top:-1px">{postrow.ICQ_STATUS_IMG}</div></div>');
//--></script><noscript>{postrow.ICQ_IMG}</noscript></td>
</tr>
</table></td>
#
# Remplacer par
#
<td class="{postrow.ROW_CLASS}">
<div class="nav" style="float:left;">{postrow.PROFILE_IMG} {postrow.PM_IMG} {postrow.EMAIL_IMG} {postrow.WWW_IMG} {postrow.AIM_IMG} {postrow.YIM_IMG} {postrow.MSN_IMG} {postrow.ICQ_IMG}</div>
<div class="gensmall" style="float:right; text-align:right;">{postrow.EDITED_MESSAGE}</div>
</td>