Search code examples
drupaldrupal-7drupal-modulesuser-profile

Error in profile 2 while updating programatically


EntityMalformedException: Missing bundle property on entity of type profile2. in entity_extract_ids()


Solution

  • The error usually comes if profile2 does not exist for user. Please make sure if user you are updating has valid profile entity. You can check profile2 by using the function profile2_load_by_user($account, $type_name = NULL).

    Thanks.