The code '#wysiwyg' => FALSE, will disable any conforming wysiwyg on the export text area. I think it's a useful addition to this module:

  $form['export'] = array(
    '#type' => 'textarea',
    '#title' => t('Node export code'),
    '#default_value' => $code_string,
    '#rows' => 30,
    '#description' => t('Copy this code and then on the site you want to import to, go to the <em>Node export: import</em> link under <em>Create content</em>, and paste it in there.'),
    '#attributes' => array(
      'wrap' => 'off',
    ),
    '#wysiwyg' => FALSE,
  );

Comments

Jorrit’s picture

Status: Active » Needs review
danielb’s picture

Status: Needs review » Fixed

Great, thanks!

Jorrit’s picture

Thanks for your quick response! I forgot to mention that the same goes for the import textarea. Could you apply the same change there as well?

danielb’s picture

Status: Fixed » Active
danielb’s picture

Status: Active » Fixed

done

Status: Fixed » Closed (fixed)

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