Closed (duplicate)
Project:
Content Construction Kit (CCK)
Version:
6.x-1.x-dev
Component:
content.module
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
1 Jun 2006 at 00:59 UTC
Updated:
1 Jun 2006 at 01:52 UTC
got this: Fatal error: Cannot use object of type stdClass as array in /var/www/kb/modules/cck/content_admin.inc on line 78
shouldn't this:
$type = new stdClass();
$type['label'] = '';
$type['description'] = '';
$type['help'] = '';
$type['title_label'] = 'Title';
be this instead:
$type = array();
Comments
Comment #1
RayZ commentedYet another duplicate of http://drupal.org/node/64905, see the patch in comment #8.