In cache_actions.rules.inc, cache_actions_action_clear_cache_cid_form() the wildcard element is defined as

  $form['settings']['wildcard'] = array(
    '#type' => 'checkbox',
    '#title' => t('Use wildcard'),
    '#options' => $cache_bins,
    '#default_value' => $settings['wildcard'],
  );

'#options' => $cache_bins, should not be present and causes an error when you try and submit the form. Removing that from the element removes the error.

Comments

fabsor’s picture

Status: Active » Fixed

Thanks for reporting the bug. A fix has been commited to the 2.0 branch.

Status: Fixed » Closed (fixed)

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