re,
après si longtemps ^^
J'ai refait la même modification et erreur :
Citation
Not Found
The requested URL /magnum/<a was not found on this server.
Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.
dans viewtopic.php:
Code
//
// Post, reply and other URL generation for
// templating vars
//
$new_topic_url = append_sid('posting.'.$phpEx . '?mode=newtopic&' . POST_FORUM_URL . '=' . $forum_id);
$reply_topic_url = append_sid('posting.'.$phpEx . '?mode=reply&' . POST_TOPIC_URL . '=' . $topic_id);
$view_forum_url = append_sid('viewforum.'.$phpEx . '?' . POST_FORUM_URL . '=' . $forum_id);
$view_prev_topic_url = append_sid('viewtopic.'.$phpEx . '?' . POST_TOPIC_URL . '=' . $topic_id . '&view=previous');
$view_next_topic_url = append_sid('viewtopic.'.$phpEx . '?' . POST_TOPIC_URL . '=' . $topic_id . '&view=next');
$resolu = append_sid("<a href=\"ext_status.$phpEx?sid=". $userdata['session_id'] . "&" . POST_TOPIC_URL . "=" . $topic_id . "&" . POST_FORUM_URL . "=" . $forum_topic_data['forum_id'] . "&" . $solved_act . "=true\"><img src=\"images/resolu.gif\"></a>");
et
Code
'U_VIEW_TOPIC' => append_sid("viewtopic.$phpEx?" . POST_TOPIC_URL . "=$topic_id&start=$start&postdays=$post_days&postorder=$post_order&highlight=$highlight"),
'U_POST_RESOLU' => $resolu,
'U_VIEW_FORUM' => $view_forum_url,
'U_VIEW_OLDER_TOPIC' => $view_prev_topic_url,
'U_VIEW_NEWER_TOPIC' => $view_next_topic_url,
'U_POST_NEW_TOPIC' => $new_topic_url,
'U_POST_REPLY_TOPIC' => $reply_topic_url)
dans le .tpl :
Code
<a href={U_POST_RESOLU}</a>
peut-être la mon erreur ?
Cordialement eric0279