I found a possible bug with this hack. If a new user signs on with an apostrophe in their name (like this: Man'owar) they will get a db error. To fix this:
Find:
PHP Code:
$getuser=$DB_site->query_first("SELECT username FROM user WHERE username='$username'");
and replace it with this:
PHP Code:
$getuser=$DB_site->query_first("SELECT username FROM user WHERE username='".addslashes($username)."');