When you use the Batch Move in the admin (awesome function btw), it also moves sticky and announcement topics. This can be a problem depending on your forum.
I am trying to figure this one out but don't have enough ASP knowlege yet.
===============
My mod so far:
admin/batch_move_topics_form.asp - Line 166 or so (easy part)
<select name="priority">
<option value="0" selected>Normal</option>
<option value="1">Sticky</option>
<option value="2">Announce this Forum</option>
<option value="3">Announce All Forums</option>
</select>
admin/batch_move_topics.asp
Line 69 intPriority = CInt(Request.Form("priority"))
============================
I know what I need to modify the "Update" SQL statement and/or the "If" statement just below. However, I'm not quite sure what to do.