Needs review
Project:
Multiple et al
Version:
6.x-1.0
Component:
Code
Priority:
Major
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
27 Nov 2011 at 19:00 UTC
Updated:
27 Nov 2011 at 19:00 UTC
An Undefined Index error is reported in watchdog when any page of site is accessed.
Marking as critical as more than a thousand errors are generated on my site per page load due to this bug.
Fix:
multiple_etal.views.inc
if ($field['field']['handler'] == 'content_handler_field_multiple') {
Change to:
if (isset($field['field']['handler']) && $field['field']['handler'] == 'content_handler_field_multiple') {