Index: bbcode.module =================================================================== RCS file: /cvs/drupal/contributions/modules/bbcode/bbcode.module,v retrieving revision 1.44 diff -u -p -r1.44 bbcode.module --- bbcode.module 28 Apr 2007 12:12:03 -0000 1.44 +++ bbcode.module 11 May 2007 11:57:12 -0000 @@ -11,8 +11,13 @@ function bbcode_filter_tips($delta, $for include_once(drupal_get_path('module', 'bbcode') .'/bbcode-help.inc'); return _bbcode_filter_tip(); } - else - return t('You can use !BBCode tags in the text, URLs will automatically be converted to links.', array('!BBCode' => l(t('BBCode'), "filter/tips/$format", NULL, NULL, 'filter-bbcode-' . $delta))); + else { + $output = t('You can use !BBCode tags in the text.', array('!BBCode' => l(t('BBCode'), "filter/tips/$format", NULL, NULL, 'filter-bbcode-' . $delta))); + if (variable_get("bbcode_make_links_$format", FALSE)) { + $output .= ' '. t('URLs will automatically be converted to links.'); + } + return $output; + } }