Hmm, it auto brings it up in 3.0.17 and it appears to be a feature, not a bug.
I found the code that controls it, but cant figure out where to put it (im not familiar with 3.6.x structure yet).
Code:
<p align="center" class="smallfont"><a href="template.php?do=replace®ex=0&requirerebuild=0&test=0&dostyleid=22&startat_template=50&startat_style=0&searchstring=%3Cbr%3E&replacestring=%3Cbr%3E" onclick="javascript:clearTimeout(timerID);">Processing Complete - Proceed</a></p>
<script type="text/javascript">
myvar = ""; timeout = 10;
function exec_refresh()
{
window.status="Redirecting..."+myvar; myvar = myvar + " .";
timerID = setTimeout("exec_refresh();", 100);
if (timeout > 0)
{ timeout -= 1; }
else { clearTimeout(timerID); window.status=""; window.location="template.php?do=replace®ex=0&requirerebuild=0&test=0&dostyleid=22&startat_template=50&startat_style=0&searchstring=%3Cbr%3E&replacestring=%3Cbr%3E"; }
}
exec_refresh();
</script>