formsapi

Fix for Removing an element #process function, yuk!

  1. /**
  2.  * Implementation of hook_elements().
  3.  */
  4. function wysiwyg_elements() {
  5.   $type = array();
  6.   $type['textarea'] = array('#process' => array('wysiwyg_process_textarea'));

Removing an element #process function, yuk!

  1. /**
  2.  * Implementation of hook_form_alter().
  3.  */
  4. function wysiwyg_form_alter(&$form, &$form_state, $form_id) {
  5.   $form['#input'] = TRUE;
  6. }
  7.  
  8. function wysiwyg_process_form($form) {
Syndicate content