Quote:
Originally Posted by Yahhoon23
Just one thing.
I use a recycle bin or trash area, so by installing this hack and having the new option Move Thread to Bin, how can I make it default so Move Thread Without Redirect is a default preset along with the Recycle Bin Forum that will be a preset default?
|
Add this line in the if statement directly after the forum id of your recycle bin.
Code:
$_POST['method'] = 'move';
Hence the whole if statement should read something like this...
Code:
if ($_REQUEST['do'] == 'archive')
{
$_POST['do'] = 'domovethread';
$_POST['forumid'] = '52';
$_POST['method'] = 'move';
}
Thanks for pointing this out. I don't necessarily want redirects either but I didn't bother to check to see whether or not they were being left.