MyBB Community Forums

Full Version: Thread Moving & Custom Ban Times
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
When you select to move a thread, the following option is chosen first,
Move thread and leave redirect in existing forum for days: (leave blank for 'infinite')
I would like the following to be ticked first instead,
Move thread
How do I do this?


Also, custom ban times. I'd like to ban users for less than a day. How can I get an input box on the ban user page?
For the first one, from the moderation_move template, find:

<label><input type="radio" class="radio" name="method" value="move" />{$lang->method_move}</label><br />
<label><input type="radio" class="radio" name="method" value="redirect" checked="checked" />{$lang->method_move_redirect}</label> <input type="text" class="textbox" name="redirect_expire" size="3" /> {$lang->redirect_expire_note}<br />

change to:

<label><input type="radio" class="radio" name="method" value="move" checked="checked" />{$lang->method_move}</label><br />
<label><input type="radio" class="radio" name="method" value="redirect" />{$lang->method_move_redirect}</label> <input type="text" class="textbox" name="redirect_expire" size="3" /> {$lang->redirect_expire_note}<br />

Basically just moving checked="checked" from one option to the other.
Thank you. Any ideas for my other request?