After installing this module, the "Text processing" options disappear on textfield and textarea fields. Uninstalling the module solves the problem.
Caused by lines 80-89 in text_noderef.module ? :
/**
* Implementation of hook_form_FORM_ID_alter().
*/
function text_noderef_form_content_field_edit_form_alter(&$form, $form_state) {
// Do not allow changing this to anything else besides 'Plain text'.
$form['field']['text_processing'] = array(
'#type' => 'value',
'#value' => 0,
);
}
Please see attached screenshot.
Drupal 6.20
Wysiwyg 6.x-2.2
CCK 6.x-3.x-dev (2011-Jan-07)
Better Formats 6.x-1.2
| Comment | File | Size | Author |
|---|---|---|---|
| text_noderef_issue.png | 76.63 KB | keva |
Comments
Comment #1
boobaaFixed by 04249c5, thanks for reporting.
Comment #3
yul63 commentedIt happened to me when I created a new node type. All the text fields in other node types lost formatting. As I finally didn't need the module, the problem was fixed by uninstalling it.
(Edited to add more details)