? .AppleDouble
? :2e_node_info.info
? :2e_node_info.module
Index: node_info.info
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/node_info/node_info.info,v
retrieving revision 1.1
diff -u -p -r1.1 node_info.info
--- node_info.info	17 Oct 2007 20:55:25 -0000	1.1
+++ node_info.info	7 Dec 2007 05:12:36 -0000
@@ -1,3 +1,4 @@
 ; $Id: node_info.info,v 1.1 2007/10/17 20:55:25 nedjo Exp $
 name = Node Info
 description = Enables the inclusion of information in content display on when content was posted and updated and by whom.
+core = 6.x
\ No newline at end of file
Index: node_info.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/node_info/node_info.module,v
retrieving revision 1.2
diff -u -p -r1.2 node_info.module
--- node_info.module	17 Oct 2007 20:59:35 -0000	1.2
+++ node_info.module	7 Dec 2007 05:12:36 -0000
@@ -8,7 +8,7 @@ define('NODE_INFO_USER', 'user');
 /**
  * Implementation of hook_form_alter().
  */
-function node_info_form_alter($form_id, &$form) {
+function node_info_form_alter(&$form, $form_state, $form_id) {
   if ($form_id == 'node_type_form' && isset($form['identity']['type'])) {
     $options = _node_info_options();
     $form['workflow']['node_info'] = array(
@@ -69,10 +69,22 @@ function _node_info_options() {
 }
 
 /**
+ * Implementation of hook_theme.
+ */
+function node_info_theme() {
+  return array(
+    'node_info_display' => array(
+      'arguments' => array('node', 'info')
+    )
+  );
+}
+
+
+/**
  * Theme the display of .
  */
 function theme_node_info_display($node, $info) {
-  switch(count($info)) {
+  switch (count($info)) {
     case 0:
       return '';
     default:
