Index: helptip.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/helptip/helptip.module,v retrieving revision 1.3.2.9 diff -u -F^f -r1.3.2.9 helptip.module --- helptip.module 17 Dec 2006 04:35:11 -0000 1.3.2.9 +++ helptip.module 28 Dec 2006 15:46:01 -0000 @@ -353,10 +353,11 @@ function helptip_settings() { * Display the body of the help tip. In this implementation, we show teaser. */ function theme_helptip_body($node) { - $node->teaser = check_markup($node->teaser, $node->format, FALSE); $node->body = check_markup($node->body, $node->format, FALSE); - return '
'.$node->teaser. - theme('helptip_links', $node)."
\n"; + if ($node->teaser = check_markup($node->teaser, $node->format, FALSE)) { + return '
'.$node->teaser. + theme('helptip_links', $node)."
\n"; + } } /**