--- tracker.module   6 May 2008 12:18:51 -0000   1.157
+++ tracker.module   4 Dec 2008 11:33:51 -0000
@@ -71,3 +71,18 @@
   return user_view_access($account) && user_access('access content');
 }
 
+/**
+ * Implementation of hook_theme().
+ */
+function tracker_theme(){
+  return array(
+    'tracker_item' => array(
+      'arguments' => array('node' => NULL),
+      'file' => 'tracker.pages.inc',
+    ),
+    'tracker' => array(
+      'arguments' => array('rows' => NULL),
+      'file' => 'tracker.pages.inc',
+    ),
+  );
+}


