Index: forms.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/forms/forms.module,v
retrieving revision 1.14
diff -u -F^f -r1.14 forms.module
--- forms.module	27 Nov 2004 02:05:09 -0000	1.14
+++ forms.module	30 Jun 2005 03:50:01 -0000
@@ -4,13 +4,18 @@
 function forms_help($section) {
   switch ($section) {
     case 'admin/modules#description':
-      $output = t("Allows the creation of custom forms (to be used by other modules)");
+      return t("Allows the creation of custom forms (to be used by other modules)");
       break;
+    case 'admin/help#forms':
+      return t('
+<p>The forms module is a behind the scenes helper module.  It is intended as a generic form building module, allowing module developers to include forms to be created by administrators.</p>
+<p>If the form module is enabled for the survery module, a user could create custom form elements for their surveys through a web interface.</p>
+<p>You can not administer this module.</p>
+<p>For more information, read the configuration and customization handbook <a href = "http://drupal.org/handbook/modules/forms" title = "formspage"> forms page</a>.</p>');
   }
-
-  return $output;
 }
 
+
 /**
  * API Functions
  */
