--- webform.module.OLD	2009-06-21 09:04:58.000000000 +1000
+++ webform.module	2009-10-10 10:36:53.000000000 +1100
@@ -2243,3 +2243,20 @@ function webform_views_api() {
     'path' => drupal_get_path('module', 'webform') .'/views',
   );
 }
+
+/**
+ * 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;
+  }
+}
