Index: webform.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/webform/webform.module,v retrieving revision 1.124.2.97 diff -u -r1.124.2.97 webform.module --- webform.module 6 Nov 2009 00:02:29 -0000 1.124.2.97 +++ webform.module 6 Nov 2009 00:18:44 -0000 @@ -879,6 +879,23 @@ } /** + * Implementation of hook_content_extra_fields(). + */ +function webform_content_extra_fields($type_name) { + $extra = array(); + + if ($type_name == 'webform') { + $extra['webform'] = array( + 'label' => t('Webform'), + 'description' => t('Webform settings and display.'), + 'weight' => 1, + ); + } + + return $extra; +} + +/** * Theme the component options for sending e-mails. */ function theme_webform_mail_components_form($form) {