Fatal error: Cannot use object of type stdClass as array in /modules/editview/editview.module on line 272

Comments

wrunt’s picture

Sorry about that MrTaco, I don't get that error. What version of php do you have?

I've added the following change in cvs that will hopefully fix this problem:

Change line 272 from:
if ($field['#type'] == 'submit') {
to:
if (is_array($field) && $field['#type'] == 'submit') {

agileware’s picture

Status: Active » Closed (fixed)

The 4.7 version is no longer supported.