Skip to content
Snippets Groups Projects
Commit 74923f70 authored by Angie Byron's avatar Angie Byron
Browse files

#567100 follow-up by mfer: Fix default value of Default search module setting.

parent 9eef4055
Branches
Tags
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
......@@ -124,7 +124,7 @@ function search_admin_settings($form) {
$form['active']['search_default_module'] = array(
'#title' => t('Default search module'),
'#type' => 'radios',
'#default_value' => 'node',
'#default_value' => variable_get('search_default_module', 'node'),
'#options' => _search_get_module_names(),
'#description' => t('Choose which search module is the default.')
);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment