Russs, заменить файлы надо.
Notice: Undefined index: order_yes in /var/www/usr/www/rutorrent.biz/order.php on line 76 Notice: Undefined index: order_yes in /var/www/usr/www/rutorrent.biz/order.php on line 77
Russs, вот это на это замени.
<script type="text/javascript">
$(document).ready(function()
{
$("td#order_vote a").one("click", function(id)
{
var id = $(this).attr('name');
if(!getCookie('order_vote_'+id+''))
{
setCookie('order_vote_'+id+'', 1, 1);
order_vote(id);
$("td#order_vote a[name="+id+"]").html($("td#order_vote a[name="+id+"]").text());
return false;
}
else
{
alert('{L_ORDER_ARE_VOTE}');
return false;
}
});
});