diff options
author | Neil Drumm <drumm@3064.no-reply.drupal.org> | 2006-11-17 00:21:44 +0000 |
---|---|---|
committer | Neil Drumm <drumm@3064.no-reply.drupal.org> | 2006-11-17 00:21:44 +0000 |
commit | 2eafd25fe60e0306288c2f41c8495c001f22d95b (patch) | |
tree | eb670f3153bda7faeb499c7623a0ef93b5b261e6 /modules/aggregator | |
parent | 1237159381d405b44c503691c591c4d9ca483b7f (diff) | |
download | brdo-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.module | 2 |
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.') ); |