Приоткрываю внешние ссылки, из заголовка выкинута функция открытия
Цитата: <script type="text/javascript">
<!--
function open_external(url, id)
{
w = window.open('about:blank', id);
w.document.write('<meta http-equiv="refresh" content="0;url='+url+'">');
w.document.close();
return false;
}
-->
</script>
и в class_bbcode.php
Цитата: $uniqid = substr(md5(uniqid(rand(), true)), 0, 10);
return "<noindex><span id=\"extlink_" . $uniqid . "\" title=\"Внешняя ссылка: ".$rightlink."\" style=\"text-decoration:underline; cursor: pointer;\" onclick=\"return open_external('$rightlink', this.id);\">$text</span></noindex>";
заменен на
Цитата: return "<noindex><a href=\"$rightlink\" rel=\"nofollow\" target=\"_blank\">$text</a></noindex>";
сейчас запущу перестройку кеша сообщений, а, может, само перестроится...