Okay version 1.1.1 has been uploaded.
For the quick patch just do the following:
AdminCP -> Plugins & Products System -> Plugin Manager ->
1.) Find Auto Move Closed Threads plugins
2.) Click edit on
Move Thread with close
3.) Replace entire Plugin PHP Code textarea with the following:
PHP Code:
$sticky = ((!$vbulletin->options['amct_excludesticky']) OR ($threadinfo['sticky'] == 0)) ? true : false;
$vbulletin->options['amct_forumids'] = @unserialize($vbulletin->options['amct_forumids']);
if ($vbulletin->options['amct_enabled'] && ($vbulletin->options['amct_forumids'][0] == -1 || in_array($threadinfo['forumid'], $vbulletin->options['amct_forumids'])) && $threadinfo['open'] && $sticky)
{
// Don't allow the thread to be moved if move forum doesn't accept threads
$moveforumid = verify_id('forum', $vbulletin->options['amct_moveforum']);
$moveforuminfo = fetch_foruminfo($moveforumid );
if (!$moveforuminfo['cancontainthreads'] OR $moveforuminfo['link'])
{
eval(standard_error(fetch_error('moveillegalforum')));
}
$threadman->set('forumid', $vbulletin->options['amct_moveforum']);
$threadman->save();
$action = $vbphrase['closed'];
if (empty($threadman->errors))
{
build_forum_counters($threadinfo['forumid']);
build_forum_counters($moveforumid);
}
$vbulletin->url = 'showthread.php?' . $vbulletin->session->vars['sessionurl'] . "t=$threadid";
eval(print_standard_redirect('redirect_openclose', true, true));
}