Skip to content
Snippets Groups Projects
Commit 2eafd25f authored by Neil Drumm's avatar Neil Drumm :wave:
Browse files

#93824 by edkwh. Bad default for a radio button.

parent 12371593
No related branches found
No related tags found
No related merge requests found
......@@ -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.')
);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment