Hi!
This mod has been doing a fine job alongside many others for several months now.
I changed the mod for my site a bit... haven't read all the posts in here so this might have already been implemented...
I have added the functionality to the search.php file as well by adding these lines:
Code: Select all
// Topic posters MOD, By Manipe (Begin)
$topic_posters_url = append_sid($phpbb_root_path . "topicposters.$phpEx?" . POST_TOPIC_URL . "=$topic_id");
$replies_topic_posters = '<a href="' . $topic_posters_url . '" onclick="window.open(\'' . $topic_posters_url . '\', \'_topicposters\', \'height=300,resizable=yes,scrollbars=yes,width=290\');return false;" target="_topicposters">' . $replies . '</a>';
// Topic posters MOD, By Manipe (End)
After the line
Code: Select all
$last_post_url = '<a href="' . append_sid("viewtopic.$phpEx?" . POST_POST_URL . '=' . $searchset[$i]['topic_last_post_id']) . '#' . $searchset[$i]['topic_last_post_id'] . '"><img src="' . $images['icon_latest_reply'] . '" alt="' . $lang['View_latest_post'] . '" title="' . $lang['View_latest_post'] . '" border="0" /></a>';
and before
Code: Select all
$template->assign_block_vars('searchresults', array(
Furthermore I changed the line
to
Code: Select all
'REPLIES' => $replies_topic_posters,
Thanks.