Index: title.module
===================================================================
RCS file: /cvs/drupal/contributions/modules/title/title.module,v
retrieving revision 1.16
diff -u -F^f -r1.16 title.module
--- title.module	20 Sep 2004 19:31:45 -0000	1.16
+++ title.module	26 Sep 2004 08:13:56 -0000
@@ -8,10 +8,6 @@ function title_help($section) {
   switch ($section) {
     case 'admin/modules#description':
       return t('Enables users to link to stories, articles or similar content by title.');
-    case 'filter#short-tip' :
-      return t('<a href=\"%title-help\">Link to content</a> on this site using <em>[title|text]</em>.', array("%title-help" => url('filter/tips', NULL, 'filter-title')));
-    case 'filter#long-tip' :
-      return '<p>' . t('You may quickly link to content on the site using this syntax: <em>[title|text]</em>. This will generate a link labeled "text" to the content with the title "title". If you omit "|text", the label becomes "title".') . '</p>';
   }
 }
 
@@ -101,8 +97,12 @@ function _title_filter_process($text) {
   return preg_replace("/$pattern/e", $replacement, $text);
 }
 
-function _title_filter_settings() {
-  return form_group(t('Title filter'), t('Wiki-like [node title|text] links are enabled. These shortcuts generate a link labeled "text" to the node with the title "node title". If you omit "|text", the label becomes "node title". You may use a substring of a node title if desired. When multiple matching titles are found, a list of matching nodes will be displayed. If no matching titles are found, a full-text search is returned.'));
+function title_filter_tips($delta, $format, $long = false) {
+  if ($long){
+    return t('Wiki-like [node title|text] links are enabled. These shortcuts generate a link labeled "text" to the node with the title "node title". If you omit "|text", the label becomes "node title". You may use a substring of a node title if desired. When multiple matching titles are found, a list of matching nodes will be displayed. If no matching titles are found, a full-text search is returned.');
+  }else{
+    return t('Link to content on this site using <em>[title|text]</em>.');
+  }
 }
 
 ?>
