Файл: Readme.txt
Строк: 14
Установка:
Распаковать в
корень
Выполнить запрос
alter table `mail` add
`show_vk` int(1) default '1';
В head.php вашей темы
прописать прописать код:
if (isset($user)
&& $webbrowser == true)
{
?><script>
function
show()
{
$.ajax({
url: "/ajax/frend.ajax.php",
cache: false,
success: function(html){
$("#frends").html(html);
}
});
}
$(document).ready(function(){
show();
setInterval('show()',10000);
});
</script><div
style="position:fixed; left: 10px; bottom:15px;"
id="frends"></div><?
}