No, I don't want to register on your board.
The problem is that the solution above won't work if you have email verification activated. To get the custom profile fields in error_moderateuser, you will have to hack register.php a little.
Try this:
Find this:
PHP Code:
$DB_site->query("UPDATE user SET usergroupid=4$dotitle WHERE userid='$u'");
After it, add:
PHP Code:
$userprofile = $DB_site->query_first("SELECT * FROM useractivation WHERE userid='$u'");
Now in error_moderateuser, to display the email you can use $userinfo[email] and for the custom profile fields, use $userprofile[field6], $userprofile[field7], etc....
Tell me if it works.