#48209, Prevent system module forms (system/theme settings) from saving 'reset' to the variables table., patch by Markus Petrux
parent
784202418f
commit
aeead6cf9c
|
@ -151,9 +151,9 @@ function drupal_validate_form($form_id, &$form, $callback = NULL) {
|
|||
}
|
||||
|
||||
function drupal_submit_form($form_id, $form, $callback = NULL) {
|
||||
global $form_values;
|
||||
// Prevent system module forms (system/theme settings) from saving certain form fields to the variables table.
|
||||
unset($GLOBALS['form_values']['submit'], $GLOBALS['form_values']['reset'], $GLOBALS['form_values']['form_id']);
|
||||
|
||||
unset($GLOBALS['form_values']['submit'], $GLOBALS['form_values']['form_id']);
|
||||
if (isset($form['#submit'])) {
|
||||
foreach ($form['#submit'] as $function => $args) {
|
||||
if (function_exists($function)) {
|
||||
|
|
Loading…
Reference in New Issue