--- about_this_node5/about_this_node.module 
+++ about_this_node6/about_this_node.module 
@@ -10,19 +10,16 @@
 /**
  * Implementation of hook_menu()
  */
-function about_this_node_menu($may_cache) {
+function about_this_node_menu() {
   $items = array();
   
-  if ($may_cache) {
-    $items[] = array(
-      'path' => 'admin/content/aboutthisnode',
-      'title' => t('About this node'),
-      'callback' => 'drupal_get_form',
-      'callback arguments' => array('about_this_node_admin_settings'),
-      'type' => MENU_NORMAL_ITEM,
-      'access' => user_access('administer about this node'),
-    );
-  }
+  $items['admin/content/aboutthisnode'] = array(
+    'title' => t('About this node'),
+    'page callback' => 'drupal_get_form',
+    'page arguments' => array('about_this_node_admin_settings'),
+    'type' => MENU_NORMAL_ITEM,
+    'access arguments' => array('administer about this node'),
+  );
   
   return $items;
 }
@@ -34,6 +31,16 @@
 function about_this_node_perm() {
   return array('administer about this node', 'view about this node block');
 }
+
+
+function about_this_node_theme() {
+  return array(
+    'about_this_node_node' => array(
+      'arguments' => array('form' => NULL),
+    ),
+  );
+}
+
 
 
 /**
@@ -132,7 +139,7 @@
   }
   else {
     $author = user_load(array('uid' => $author_uid));
-    $author_output = l($author->name, 'user/' . $author_uid);
+    $author_output = l($author->name, 'user/'. $author_uid);
   }
 
   // Author name/time
@@ -159,7 +166,7 @@
   }
   else {
     $update_author = user_load(array('uid' => $update_author_uid));
-    $update_author_output = l($update_author->name, 'user/' . $update_author_uid);
+    $update_author_output = l($update_author->name, 'user/'. $update_author_uid);
   }
 
   // Last updated author name/time
@@ -231,7 +238,8 @@
     else {
       $node_info['commenting']['value'] = 'Read/Write';
     }
-  } else {
+  }
+  else {
     $node_info['commenting']['value'] = 'Module not enabled';
   }
 
@@ -254,7 +262,7 @@
   }
 
   foreach ($node_info as $key => $item) {
-    $node_info_prepped[$key] = array('data' => '<span class="aboutthisnode-label">' . $item['label'] . '</span> ');
+    $node_info_prepped[$key] = array('data' => '<span class="aboutthisnode-label">'. $item['label'] .'</span> ');
 
     // If this item has children
     if (is_array($item['value'])) {
