I’m not sure, but how else would WP know if a post with that ID existed without querying the database?
Because I passed it an ID?
So this isn’t support as the forum title suggests?
I’ve found a couple of issues with the registration email function in 2.5 that solved this for me.
In includes/pluggable, line 936:
Add “@” in front of wp_mail so its the same as line 927.
In includes/user, line 136
Add $pass1 in the parameters to end up with this:
wp_new_user_notification( $user_id, $pass1 );
The bug is that the wp_mail new user notification needed the
plain text password to send anything to the user, and this wasn’t being passed to it.
Michael