Index: wordfilter.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/wordfilter/wordfilter.module,v
retrieving revision 1.7
diff -u -F^f -u -F^f -r1.7 wordfilter.module
--- wordfilter.module	19 Jun 2007 12:13:44 -0000	1.7
+++ wordfilter.module	31 Dec 2007 20:51:07 -0000
@@ -186,12 +186,12 @@ function wordfilter_filter($op, $delta =
     case 'description':
       return wordfilter_help('admin/modules#description');
     case 'settings':
-      $form = array('word_filter' => array(
+      $form['word_filter'] = array(
         '#type' => 'fieldset',
         '#title' => t('Word filter'),
-        '#description' => t('You can define a global list of words to be filtered on the <a href="%url">wordfilter settings page</a>.', array('%url' => url('admin/settings/wordfilter'))))
+        '#description' => t('You can define a global list of words to be filtered on the <a href="%url">wordfilter settings page</a>.', array('%url' => url('admin/settings/wordfilter'))),
       );
-      return drupal_get_form('wordfilter', $form);
+      return $form;
     case 'process':
       return wordfilter_filter_process($text);
     default:
