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

CommentFileSizeAuthor
text_noderef_issue.png76.63 KBkeva

Comments

boobaa’s picture

Status: Active » Fixed

Fixed by 04249c5, thanks for reporting.

Status: Fixed » Closed (fixed)

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

yul63’s picture

It 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)