Some modules define validation handlers on their settings form.
Now that form['#base'] is gone, they have to explicitly declare them in $form['#validate'].

throttle, node, search and upload currently fail to do so - embarrassing esp. for node and search since the 'rebuild node access table' and 'reindex site' buttons on their forms are caught in validate handlers.

Support from Acquia helps fund testing for Drupal Acquia logo

Comments

yched’s picture

Adding a fix for
-function search_wipe_confirm_submit(&$form, $form, &$form_state) {
+function search_wipe_confirm_submit(&$form, &$form_state) {

Dries’s picture

Status: Needs review » Fixed

Committed to CVS HEAD. Thanks!

Anonymous’s picture

Status: Fixed » Closed (fixed)