Index: yahoo_terms.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/yahoo_terms/yahoo_terms.module,v
retrieving revision 1.1.4.7
diff -u -p -r1.1.4.7 yahoo_terms.module
--- yahoo_terms.module	5 Sep 2007 19:04:26 -0000	1.1.4.7
+++ yahoo_terms.module	7 Oct 2007 21:37:13 -0000
@@ -111,7 +111,7 @@ function _yahoo_terms_which_vocab($type)
  * Only use the current terms in the vocabulary or expand with the new terms, TRUE - not epxand, FALSE - expand. Default: FALSE
  */
 function yahoo_terms_node_assign_keywords(&$node, $query = "", $blacklist, $vid, $static = FALSE) {
-  $text = $node->body;
+  $text = ($node->body != '') ? $node->body : $node->title;
   $limit = variable_get('yahoo_terms_taxonomy_limit_for_'. $node->type, FALSE);
   $limit = ($limit === FALSE) ? variable_get('yahoo_terms_taxonomy_limit', -1) : $limit;
   $terms = yahoo_terms_text_get_keywords($text, $query, $limit, $blacklist);
