Notice: Undefined index: #view_mode in eva_entity_view_alter() (line 44 of eva.module).
Notice: Undefined index: #language in eva_entity_view_alter() (line 45 of eva.module).
EntityMalformedException: Missing bundle property on entity of type relation. in entity_extract_ids() (line 7409 of includes/ common.inc).

Comments

pasqualle’s picture

as a quick fix to be able to view a relation content add

function eva_entity_view_alter(&$build, $type) {
  if ($build['#entity_type'] == 'relation') {
    return;
  }
  ...

but still, you won't be able to attach views to relation content with eva..

mkadin’s picture

I'm not seeing this problem with the latest dev release. Can anyone else reproduce this?

mkadin’s picture

Status: Active » Closed (cannot reproduce)

If anyone can reproduce this from scratch, please open this issue again.