Notice: Undefined index: field in realname_field_widget_form_alter() (line 374 of modules\realname\realname.module)

Should be fixed changing:

if ($context['field']['type'] == 'entityreference') {

to:

if (isset($context['field']) && ($context['field']['type'] == 'entityreference')) {

Greats from Germany
LeisureLarry

Comments

LeisureLarry created an issue. See original summary.

hass’s picture

Status: Active » Closed (duplicate)
hass’s picture