certains d'entre vous ont la premod SEO ainsi que le mod Recents Topics comme vous avez pu le remarquer le lien menant au dernier message nous fait tomber sur une belle erreur :

Pour palier au souci voici la marche à suivre:
Ouvrir : includes / functions_recenttopics.php
Chercher :
- Code: Tout sélectionner
'U_NEWEST_POST' => $view_topic_url . '&view=unread#unread',
'U_LAST_POST' => $view_topic_url . '&p=' . $row['topic_last_post_id'] . '#p' . $row['topic_last_post_id'],
Remplacer par :
- Code: Tout sélectionner
'U_NEWEST_POST' => append_sid("{$phpbb_root_path}viewtopic.$phpEx", 'f=' . $forum_id . '&t=' . $topic_id . '&view=unread') . '#unread',
'U_LAST_POST' => $phpbb_seo->seo_opt['no_dupe']['on'] ? append_sid("{$phpbb_root_path}viewtopic.$phpEx", 'f=' . $forum_id . '&t=' . $topic_id . '&start=' . @intval($phpbb_seo->seo_opt['topic_last_page'][$topic_id])) . '#p' . $row['topic_last_post_id'] : append_sid("{$phpbb_root_path}viewtopic.$phpEx", 'f=' . $forum_id . '&t=' . $topic_id . '&p=' . $row['topic_last_post_id']) . '#p' . $row['topic_last_post_id'],
Il ne vous reste plus qu'à faire un refresh de votre navigateur et c'est good







