I basically post the above msg for CMX, so that he can make the changes.
ok. here's what you need to do
Edit vBSupport.php
line 854 + 855:
Remove (or comment) these line:
PHP Code:
$vbulletin->url = 'vBSupport.php?' . $vbulletin->session->vars['sessionurl_q'];
eval(print_standard_redirect('support_ticket_closed', true, true));
Line 891, 892:
Remove (or comment) these line:
PHP Code:
$vbulletin->url = 'vBSupport.php?' . $vbulletin->session->vars['sessionurl_q'] . 'do=showticket&ticketid=' . $vbulletin->GPC['ticketid'];
eval(print_standard_redirect('support_ticket_opened', true, true));
Line 924+925
Remove (or comment) these line:
PHP Code:
$vbulletin->url = 'vBSupport.php?' . $vbulletin->session->vars['sessionurl_q'];
eval(print_standard_redirect('support_ticket_assigned', true, true));
Line 940 + 941
replace
// reshow the ticket
$_REQUEST['do'] = 'showticket';
by
PHP Code:
// reshow the ticket
// $_REQUEST['do'] = 'newreply';
$vbulletin->url = 'vBSupport.php?' . $vbulletin->session->vars['sessionurl_q'] . 'do=showticket&ticketid=' . $vbulletin->GPC['ticketid'];
eval(print_standard_redirect('support_rebuilt_info'));