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
Comment #1
Jorrit commentedComment #2
danielb commentedGreat, thanks!
Comment #3
Jorrit commentedThanks 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?
Comment #4
danielb commentedComment #5
danielb commenteddone