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

RayZ’s picture

Component: General » content.module
Status: Active » Closed (duplicate)

Yet another duplicate of http://drupal.org/node/64905, see the patch in comment #8.