Working on a localhost install and the domain is a singular word. While this in itself is another issue, #744970: Domain validation is way too strict, the validation of the filter form itself fails even with the filter in a disabled state.

function wysiwyg_filter_filter_wysiwyg_settings_validate($form, &$form_state) {
  $values =& $form_state['values']['filters']['wysiwyg']['settings'];
  // Don't validate disabled filters.
  if (empty($form_state['values']['filters']['wysiwyg']['status'])) {
    return;
  }
 ...
}
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

Alan D.’s picture

Status: Active » Needs review
FileSize
596 bytes

And the patch

trumanru’s picture

I have same problem in 7.x-1.6-rc2. After I applied patch #1 the problem has been resolved.

Thanks!

joelcollinsdc’s picture

Status: Needs review » Reviewed & tested by the community

yes, this is annoying. please commit!

Agileware’s picture

Still an issue with 7.x-1.6-rc2

Danny_Joris’s picture

Patch works for me too.

Danny_Joris’s picture

This patch is a year old and the last update to the project was 2 years ago.

kekkis’s picture

Issue summary: View changes

+1 for RTBC.

marcoscano’s picture

+1 RTBC
Problem and solution quite old, would be nice to have this included in a tagged release of the module.

  • stefan.r committed 31fa0b3 on authored by Alan D.
    Issue #1687794 by Alan D.: Validation occurs on disabled filter
    
stefan.r’s picture

Status: Reviewed & tested by the community » Fixed

Status: Fixed » Closed (fixed)

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