summaryrefslogtreecommitdiff
path: root/modules/search
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2010-01-03 00:40:05 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2010-01-03 00:40:05 +0000
commit30a6c37c867a49ba0d1eb87a965f963f106ba558 (patch)
treeb4127c2c6bbeb0fd9cad2139445c13d098f17ab8 /modules/search
parent70e53b33c1074655f4ee917c0c4f4b1219bb109d (diff)
downloadbrdo-30a6c37c867a49ba0d1eb87a965f963f106ba558.tar.gz
brdo-30a6c37c867a49ba0d1eb87a965f963f106ba558.tar.bz2
#664036 by casey and Bojhan: Add fieldset to Active search modules.
Diffstat (limited to 'modules/search')
-rw-r--r--modules/search/search.admin.inc7
1 files changed, 5 insertions, 2 deletions
diff --git a/modules/search/search.admin.inc b/modules/search/search.admin.inc
index 12782e9b5..4e2386acc 100644
--- a/modules/search/search.admin.inc
+++ b/modules/search/search.admin.inc
@@ -110,9 +110,12 @@ function search_admin_settings($form) {
'#description' => t('Whether to apply a simple Chinese/Japanese/Korean tokenizer based on overlapping sequences. Turn this off if you want to use an external preprocessor for this instead. Does not affect other languages.')
);
- $form['search_active_modules'] = array(
+ $form['active'] = array(
+ '#type' => 'fieldset',
+ '#title' => t('Active search modules ')
+ );
+ $form['active']['search_active_modules'] = array(
'#type' => 'checkboxes',
- '#title' => t('Active search modules'),
'#default_value' => array('node', 'user'),
'#options' => _search_get_module_names(),
'#description' => t('Determine which search modules are active from the available modules.')