---open templates\default\viewtopic_attach.tpl
---find function change_torrents()
function change_torrents()
{
ajax.exec({
action : 'change_torrent',
attach_id : {postrow.attach.tor_reged.ATTACH_ID},
type : $('#tor-select-{postrow.attach.tor_reged.ATTACH_ID}').val()
---replace on
function change_torrents(selid)
{
ajax.exec({
action : 'change_torrent',
attach_id : selid,
type : $('#tor-select-'+selid).val()
---find
function change_torrents()
{
ajax.exec({
action : 'change_torrent',
attach_id : {postrow.attach.tor_not_reged.ATTACH_ID},
type : $('#tor-select-{postrow.attach.tor_not_reged.ATTACH_ID}').val()
---replace
function change_torrents(selid)
{
ajax.exec({
action : 'change_torrent',
attach_id : selid,
type : $('#tor-select-'+selid).val()
---find
<a href="#" onclick="change_torrents($('#tor-{postrow.attach.tor_reged.ATTACH_ID} select').val());
---replace
<a href="#" onclick="change_torrents({postrow.attach.tor_reged.ATTACH_ID});
---second find
<a href="#" onclick="change_torrents($('#tor-{postrow.attach.tor_reged.ATTACH_ID} select').val());
---replace
<a href="#" onclick="change_torrents({postrow.attach.tor_not_reged.ATTACH_ID});
---save вот как-то так, и ошибка исправлена и буковок меньше стало :)