Closed (fixed)
Project:
Editview
Version:
4.7.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
30 Oct 2006 at 17:28 UTC
Updated:
22 May 2009 at 00:16 UTC
Fatal error: Cannot use object of type stdClass as array in /modules/editview/editview.module on line 272
Comments
Comment #1
wrunt commentedSorry 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') {Comment #2
agileware commentedThe 4.7 version is no longer supported.