--- orig/wordfilter.module 2007-10-19 13:44:00.274861500 +0700 +++ wordfilter.module 2007-10-19 14:09:52.774861500 +0700 @@ -186,7 +186,7 @@ function wordfilter_filter($op, $delta = case 'description': return wordfilter_help('admin/modules#description'); case 'settings': - return drupal_get_form('wordfilter_filter_form'); + return wordfilter_filter_form(); case 'process': return wordfilter_filter_process($text); default: @@ -198,8 +198,10 @@ function wordfilter_filter_form() { $form = 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 wordfilter settings page.', array('%url' => url('admin/settings/wordfilter'))) + '#title' => 'Word Filter', + '#collapsible' => TRUE, + '#oollapsed' => FALSE, + '#description'=> t('You can define a global list of words to be filtered on the '. l('wordfilter settings page', 'admin/settings/wordfilter')) .'.', ); return $form; }