? .DS_Store
? cck.patch
Index: content.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/cck/Attic/content.module,v
retrieving revision 1.301.2.106
diff -u -p -r1.301.2.106 content.module
--- content.module	2 Jun 2009 12:24:04 -0000	1.301.2.106
+++ content.module	28 Jun 2009 14:08:58 -0000
@@ -443,8 +443,9 @@ function content_form_alter(&$form, $for
       // Merge field widgets.
       $form = array_merge($form, content_form($form, $form_state));
     }
-    $form['#pre_render'][] = 'content_alter_extra_weights';
+    //$form['#pre_render'][] = 'content_alter_extra_weights';
     $form['#content_extra_fields'] = $type['extra'];
+    $form = content_alter_extra_weights($form);
   }
 }
 
@@ -2357,6 +2358,21 @@ function content_content_extra_fields($t
       'view' => 'body'
     );
   }
+  $extra['revision_information'] = array(
+    'label' => t('Revision information'),
+    'description' => t('Node module form.'),
+    'weight' => 20
+  );
+  $extra['author'] = array(
+    'label' => t('Authoring information'),
+    'description' => t('Node module form.'),
+    'weight' => 20
+  );
+  $extra['options'] = array(
+    'label' => t('Publishing options'),
+    'description' => t('Node module form.'),
+    'weight' => 25
+  );    
   if (module_exists('locale') && variable_get("language_content_type_$type_name", 0)) {
     $extra['language'] = array(
       'label' => t('Language'),
