### Eclipse Workspace Patch 1.0
#P Drupal Contrib 4-7
Index: modules/htmltidy/htmltidy.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/htmltidy/htmltidy.module,v
retrieving revision 1.30
diff -u -r1.30 htmltidy.module
--- modules/htmltidy/htmltidy.module	18 Aug 2006 20:52:23 -0000	1.30
+++ modules/htmltidy/htmltidy.module	5 May 2007 20:26:52 -0000
@@ -28,6 +28,23 @@
  * @todo Do more error checking and handling.
  */
 
+/**
+ * Implementation of hook_menu().
+ */
+function htmltidy_menu($may_cache) {
+  $items = array();
+  if ($may_cache) {
+    $items[] = array(
+      'path' => 'admin/settings/htmltidy',
+      'title' => t('HTML Tidy'),
+      'description' => t('Configure settings for HTML Tidy.'),
+      'callback' => 'drupal_get_form',
+      'callback arguments' => 'htmltidy_settings',
+      'access' => user_access('administer htmltidy')
+    );
+  }
+  return $items;
+}
 
 /**
  * Drupal hook that returns help text for the specified section.
@@ -502,7 +519,7 @@
     ),
   );
 
-  return $form;
+  return system_settings_form($form);
 }
 
 
Index: modules/htmltidy/htmltidy.info.php
===================================================================
RCS file: modules/htmltidy/htmltidy.info.php
diff -N modules/htmltidy/htmltidy.info.php
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ modules/htmltidy/htmltidy.info.php	1 Jan 1970 00:00:00 -0000
@@ -0,0 +1,6 @@
+; $Id $
+name = "HTML Tidy"
+description = "Tidy up your HTML."
+; dependencies = 
+; package = 
+version = "$Name$"
