анадог тэга noindex для гугля : в файле topic.php найти кусок кода :
CODE:$options = array();
if (!file_exists('forum'.$forum_id.'/'.$topic_id.'-poll.php') && $fm->user['id'] && $threads[$firstkey]['state'] != 'closed' && ($threads[$firstkey]['p_id'] == $fm->user['id'] || $fm->_Moderator === TRUE))
$options[] = '<a href="postings.php?action=addpoll&forum='.$forum_id.'&topic='.$topic_id.'">'.$fm->LANG['AddPoll'].'</a>';
$options['srch_intop'] = '<a href="search.php?action=intopic&forum='.$forum_id.'&topic='.$topic_id.'">'.$fm->LANG['SearchInTopic'].'</a>';
$options['print'] = '<a href="printpage.php?forum='.$forum_id.'&topic='.$topic_id.'">'.$fm->LANG['PrintPage'].'</a>';
и везде в ссылках добавить rel="nofollow" , т.е заменить все на :
CODE:$options = array();
if (!file_exists('forum'.$forum_id.'/'.$topic_id.'-poll.php') && $fm->user['id'] && $threads[$firstkey]['state'] != 'closed' && ($threads[$firstkey]['p_id'] == $fm->user['id'] || $fm->_Moderator === TRUE))
$options[] = '<a href="postings.php?action=addpoll&forum='.$forum_id.'&topic='.$topic_id.'" rel="nofollow">'.$fm->LANG['AddPoll'].'</a>';
$options['srch_intop'] = '<a href="search.php?action=intopic&forum='.$forum_id.'&topic='.$topic_id.'" rel="nofollow">'.$fm->LANG['SearchInTopic'].'</a>';
$options['print'] = '<a href="printpage.php?forum='.$forum_id.'&topic='.$topic_id.'" rel="nofollow">'.$fm->LANG['PrintPage'].'</a>';
через какое-то время Добавить опрос | Поиск в теме | Версия для печати должна выпасть и из гугла |