summaryrefslogtreecommitdiff
path: root/modules/aggregator
diff options
context:
space:
mode:
authorNeil Drumm <drumm@3064.no-reply.drupal.org>2006-11-17 00:21:44 +0000
committerNeil Drumm <drumm@3064.no-reply.drupal.org>2006-11-17 00:21:44 +0000
commit2eafd25fe60e0306288c2f41c8495c001f22d95b (patch)
treeeb670f3153bda7faeb499c7623a0ef93b5b261e6 /modules/aggregator
parent1237159381d405b44c503691c591c4d9ca483b7f (diff)
downloadbrdo-2eafd25fe60e0306288c2f41c8495c001f22d95b.tar.gz
brdo-2eafd25fe60e0306288c2f41c8495c001f22d95b.tar.bz2
#93824 by edkwh. Bad default for a radio button.
Diffstat (limited to 'modules/aggregator')
-rw-r--r--modules/aggregator/aggregator.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/aggregator/aggregator.module b/modules/aggregator/aggregator.module
index 70d01b1aa..db688c181 100644
--- a/modules/aggregator/aggregator.module
+++ b/modules/aggregator/aggregator.module
@@ -225,7 +225,7 @@ function aggregator_admin_settings() {
);
$form['aggregator_category_selector'] = array(
- '#type' => 'radios', '#title' => t('Category selection type'), '#default_value' => variable_get('aggregator_category_selector', 'check'),
+ '#type' => 'radios', '#title' => t('Category selection type'), '#default_value' => variable_get('aggregator_category_selector', 'checkboxes'),
'#options' => array('checkboxes' => t('checkboxes'), 'select' => t('multiple selector')),
'#description' => t('The type of category selection widget which is shown on categorization pages. Checkboxes are easier to use; a multiple selector is good for working with large numbers of categories.')
);