Reported in #297915: content copy broken :
Workflow settings and module settings like comment, upload... are not imported correctly.

Importing :

  array (
    'status' => false,
    'promote' => false,
    'sticky' => false,
    'revision' => false,
  ),
  'upload' => '0',
  'comment' => '0',
  etc.

creates a type with :

  array (
    'status' => true,
    'promote' => true,
    'sticky' => false,
    'revision' => false,
  ),
  'upload' => '1',
  'comment' => '1',
  etc.

Comments

yched’s picture

Status: Active » Fixed

Fixed now. drupal_execute call was not given the right incoming values.

greg.harvey’s picture

Cool. Is there a patch or is it a case of wait for rc7? =)

yched’s picture

no, the fix is in 6.x-2.x-dev

greg.harvey’s picture

k, thanks.

Anonymous’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.