MyBB Community Forums

Full Version: Change Inline Post Moderation: default
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Is there a way to change the Inline Post Moderation: default. It is currently set to delete posts. Since I delete the posts using the x on the post when I am done, I just want to approve all the posts that are left. I already have checked the box and I have screwed up a couple of times and clicked on delete posts.

Thanks in advance.
it requires template edit & modification of moderation.php file .. it might be a bit annoying with only the template edit !!

simple method would be to change the order of options like below
admin panel --> templates --> your current templates set --> show thread templates --> showthread_inlinemoderation

find code similar to below
<select name="action">
<optgroup label="{$lang->standard_mod_tools}">
       	<option value="multideleteposts">{$lang->inline_delete_posts}</option>
	<option value="multimergeposts">{$lang->inline_merge_posts}</option>
	<option value="multisplitposts">{$lang->inline_split_posts}</option>
	<option value="multiapproveposts">{$lang->inline_approve_posts}</option>
	<option value="multiunapproveposts">{$lang->inline_unapprove_posts}</option>
</optgroup>
change to below code & save the template
<select name="action">
<optgroup label="{$lang->standard_mod_tools}">
	<option value="multiapproveposts">{$lang->inline_approve_posts}</option>
	<option value="multiunapproveposts">{$lang->inline_unapprove_posts}</option>
       	<option value="multideleteposts">{$lang->inline_delete_posts}</option>
	<option value="multimergeposts">{$lang->inline_merge_posts}</option>
	<option value="multisplitposts">{$lang->inline_split_posts}</option>
</optgroup>