ok, nice and easy
in template threadadmin_movepost
FIND
Code:
<div><label for="rb_method_move"><input type="radio" name="method" value="move" id="rb_method_move" />$vbphrase[move_to_destination_forum]</label></div>
<div><label for="rb_method_movered"><input type="radio" name="method" value="movered" id="rb_method_movered" checked="checked" />$vbphrase[move_and_leave_redirect_in_previous_forum]</label></div>
Replace with
Code:
<div><label for="rb_method_move"><input type="radio" name="method" value="move" checked="checked" id="rb_method_move" />$vbphrase[move_to_destination_forum]</label></div>
<div><label for="rb_method_movered"><input type="radio" name="method" value="movered" id="rb_method_movered" />$vbphrase[move_and_leave_redirect_in_previous_forum]</label></div>
It changes the default option to the move with no redirect option