Спасибо, в следующем релизе поправлю. Пока можете заменить в файле rtorrent/addtorrent.php фрагмент
наCode:$torrent = new BDecode($uploaded_file);
$comment = "";
if(array_key_exists('comment',$torrent->result))
{
$comment = $torrent->result['comment'];
if(isInvalidUTF8($comment))
$comment = win2utf($comment);
if(strlen($comment)>0)
$comment = "<param><value><string>d.set_custom2=\"".$comment."\"</string></value></param>";
}
Code:$comment = "";
if($unlink_on_error)
{
$torrent = new BDecode($uploaded_file);
if(array_key_exists('comment',$torrent->result))
{
$comment = $torrent->result['comment'];
if(isInvalidUTF8($comment))
$comment = win2utf($comment);
if(strlen($comment)>0)
$comment = "<param><value><string>d.set_custom2=\"".$comment."\"</string></value></param>";
}
}

