Bug #3669
closed
Was not able to confirm. Profile update and registration were all completely successful. I believe this is due to the following however.
$post_user->bindThisUserFromDbArray( $user );
That is not the correct way to bind an existing user to a new temporary object. It should be as follows.
foreach ( array_keys( get_object_vars( $user ) ) as $k ) {
if ( substr( $k, 0, 1 ) != '_' ) {
$post_user->$k = $user->$k;
}
}
Post variable also needs to be cleaned of all empty keys (no idea how this could happen, but lets be safe).
- Status changed from Assigned to Resolved
- % Done changed from 0 to 100
- Status changed from Resolved to Closed
With v188 upon frontend profile update now a "Remote server or file not found" error results.
Post your findings to the forums for review and investigation. Please do not add to closed tickets in such a manner, this is a forge and not a forum.
Also available in: Atom
PDF