UBB.Dev
I have a mod that is trigger happy on the delete button... of course once its gone I can't recover it. I would like to be able to have deleted posts go to a separate forum that can be deleted later if I wish. This may have been suggested previously or exist? If so I would like to add it to the controls of my site.
This is what I came up with for 6.0.1 that worked, and appears to work on a 6.2 test board. I would use this code at your own risk.

"DeletedThreads" is the keyword for the forum that contains deleted threads. moderators need moderator rights to this forum in order for this to work.

This moves them without a confirmation step.

I put this in the editpost_manage.tmpl which would be displayed to only admin/mods.

To move a post and replies:

<FORM METHOD=POST action ="{$config['phpurl']}/admin/domovepost.php">
<INPUT TYPE=HIDDEN NAME=Cat VALUE="$Cat">
<INPUT TYPE=HIDDEN NAME=page VALUE="$page">
<INPUT TYPE=HIDDEN NAME=view VALUE="$view">
<INPUT TYPE=HIDDEN NAME=sb VALUE="$sb">
<input type=hidden name=o value="$o">
<input type=hidden name="Keyword" value="DeletedThreads">
<INPUT TYPE=HIDDEN NAME="oldboard" value="$board">
<input type=hidden name="number" value="$Number">
<input type=submit value="*Delete Post & Replies" class="buttons">
</form>

To move a thread/topic:

<FORM METHOD = POST action ="{$config['phpurl']}/admin/domovethreads.php">
<INPUT TYPE=HIDDEN NAME=Cat VALUE="$Cat">
<INPUT TYPE=HIDDEN NAME=page VALUE="$page">
<INPUT TYPE=HIDDEN NAME=view VALUE="$view">
<INPUT TYPE=HIDDEN NAME=sb VALUE="$sb">
<input type=hidden name=o value="$o">
<input type=HIDDEN name="Keyword" value="DeletedThreads">
<INPUT TYPE=HIDDEN NAME="oldboard" value="$Board">
<input type=hidden name="number" value="$Main">
<input type=submit value="*Delete Thread" class="buttons">
</FORM>

You could then hide the real delete buttons if you wanted.
Works so far... I like the idea of hiding the buttons and replacing them with these. But of course I would also like to keep the delete buttons for clean up reasons later. Hopefully he will use these instead of the real ones modified them with his name so he can see them...lol.

Thanks for the help..
I just discovered a bug in this that comes from a typo.

In the code for move a post and replies I have:
<INPUT TYPE=HIDDEN NAME="oldboard" value="$board">

This should be:
<INPUT TYPE=HIDDEN NAME="oldboard" value="$Board">

The domovepost.php doesn't check that the value is given. So when it goes to update the post total and last post in the forum it doesn't update anything because the old board value is "" and won't be found.

I came across this problem when adding this to domovepost to track the forum a post is being moved from:

admin_log("MOVEPOST", $oldboard."->".$Keyword." ".$moved);

Some moves (as a result to using the delete/move button) wouldnt' have a oldboard value.
Thanks for spotting that. I was having incorrect post totals and had no idea where it was coming from.
© UBB.Developers