Index: recipe.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/recipe/recipe.module,v
retrieving revision 1.47
diff -u -r1.47 recipe.module
--- recipe.module	20 Sep 2005 13:08:01 -0000	1.47
+++ recipe.module	20 Sep 2005 13:26:50 -0000
@@ -315,7 +315,7 @@
  * Returns the recipe for display on _view pages
  */
 function recipe_content($node, $teaser = 0) {
-  if (!$teaser) {
+  if (!$teaser || variable_get('teaser_length', 600) == 0) {
     if (intval($node->yield) == $node->yield) {
       $yield = $_POST['custom_yield'];
       if ($yield && $yield != $node->yield) {
@@ -379,6 +379,9 @@
   if ($node->notes) {
     $node->body .= theme('box', t('Notes'), $node->notes);
   }
+  if (variable_get('teaser_length', 600) == 0) {
+    $node->teaser = $node->body;
+  }
   return $node;
 }

