Index: tagadelic.module
===================================================================
RCS file: /cvs/drupal/contributions/modules/tagadelic/tagadelic.module,v
retrieving revision 1.36
diff -u -p -r1.36 tagadelic.module
--- tagadelic.module	16 Nov 2006 17:25:21 -0000	1.36
+++ tagadelic.module	6 Dec 2006 14:58:22 -0000
@@ -62,10 +62,9 @@ function tagadelic_menu($may_cache) {
  * Implementation of hook_nodeapi
  * Yuo will have a nice variable in $node available for processing tags!
  */
-function tagadelic_nodeapi($node, $op) {
+function tagadelic_nodeapi(&$node, $op, $teaser, $page) {
   if ($op == 'load') {
-    $output['tags'] = tagadelic_node_get_terms($node);
-    return $output;
+      $node->tags = tagadelic_node_get_terms($node);
   }
 }
 
