Index: recipe.module
===================================================================
RCS file: /cvs/drupal/contributions/modules/recipe/recipe.module,v
retrieving revision 1.72.2.8
diff -u -r1.72.2.8 recipe.module
--- recipe.module	17 Oct 2007 17:39:34 -0000	1.72.2.8
+++ recipe.module	29 Jan 2008 22:25:09 -0000
@@ -873,7 +873,7 @@
   $node = node_load(array('nid' => $nid, 'type' => 'recipe'));
 
   $node = recipe_node_prepare($node, FALSE);
-  $output = theme('node_recipe', $node, FALSE);
+  $output = node_view($node, FALSE, FALSE, FALSE);
 
   $html = theme('recipe_export_html', check_plain($node->title), $output);
   return $html;
@@ -1544,7 +1544,7 @@
   $html .= '<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />';
   $html .= '<base href="'. $base_url .'/" />' . "\n";
   $html .= "<style type=\"text/css\">\n@import url(".drupal_get_path('module','recipe')."/recipe.css);\n</style>\n";
-  $html .= "</head>\n<body>\n<h1 class=title>" . $title . "</h1>\n" . $content . "\n</body>\n</html>\n";
+  $html .= "</head>\n<body>\n" . $content . "\n</body>\n</html>\n";
   return $html;
 }
 
