--- aggregator2_logo.module.orig	2006-04-27 08:57:09.000000000 -0400
+++ aggregator2_logo.module	2006-04-27 09:00:44.000000000 -0400
@@ -63,12 +63,23 @@
  * Implementation of hook_settings().
  */
 function aggregator2_logo_settings() {
-  $output = '';
+  $form = array();
 
-  $output .= form_checkbox(t('Add image to feed description'), 'aggregator2_logo_feed', 1, variable_get('aggregator2_logo_feed', 0), t('If enabled, feed nodes will be shown with feed logo link added to their description.'));
-  $output .= form_checkbox(t('Add image to feed items description'), 'aggregator2_logo_items', 1, variable_get('aggregator2_logo_items', 0), t('If enabled, feed items will be shown with feed logo link added to their description.'));
+  $form['aggregator2_logo_feed'] = array(
+    '#type' => 'checkbox',
+    '#title' => t('Add image to feed description'),
+    '#default_value' => variable_get('aggregator2_logo_feed', 0),
+    '#description' => t('If enabled, feed nodes will be shown with feed logo link added to their description.')
+  );
 
-  return $output;
+  $form['aggregator2_logo_items'] = array(
+    '#type' => 'checkbox',
+    '#title' => t('Add image to feed items description'),
+    '#default_value' => variable_get('aggregator2_logo_items', 0),
+    '#description' => t('If enabled, feed items will be shown with feed logo link added to their description.')
+  );
+
+  return $form;
 }
 
 /**
