I made a minor modification in viewtopic.php, now when i click a tag it send me to phpbb seach function. Just replace
http://www.yoursitename.com
// BoardTracker Tags Mod..
$BoardID = ""; // Your board ID on boardtracker.com (optional)
$topic_tags = $forum_topic_data['topic_tags'];
if ($topic_tags != '') {
$tags = $lang['Topic_Tags'] . ": ";
$words = split(",", $topic_tags);
$tagurl = "
http://www.yoursitename.com/search.php?search_keywords=";
foreach ($words as $word) {
$word = strtolower(trim($word));
$tags .= "<a href=\"$tagurl" . "$word" . "$BoardID\" rel=\"tag\">$word</a> ";
}
}
//