--- webform.module.OLD	2009-02-28 09:35:15.000000000 +1100
+++ webform.module	2009-10-08 15:27:23.000000000 +1100
@@ -2412,3 +2412,20 @@ function webform_load_components($return
   // Ensure only wanted components are returned, even all are loaded.
   return $return_all ? $component_list : array_intersect_assoc($component_list, $enabled_list);
 }
+
+/**
+ * Implementation of hook_content_extra_fields().
+ */
+function webform_content_extra_fields($type_name) {
+  if ($type_name == 'webform') {
+    $fields = array();
+
+    $fields['webform'] = array(
+      'label' => t('Webform Settings'),
+      'description' => t('Webform module form.'),
+      'weight' => -4,
+    );
+
+    return $fields;
+  }
+}
