For everyone thats having the issue with it refreshing on the register.php page this is a simple fix that will allow your members to register without it booting them off, please add the following into your register.php file
Code:
//Added by AllOutVB so that we can redirect to register page without redirecting the register page
if(strpos($_SERVER["REQUEST_URI"], 'register.php') !== false){
$is_register_page = 1;
}