_filter_autop_tips

Versions
mediamosa-21
_filter_autop_tips($filter, $format, $long = FALSE)

Filter tips callback for auto-paragraph filter.

Code

modules/filter/filter.module, line 1426

<?php
function _filter_autop_tips($filter, $format, $long = FALSE) {
  if ($long) {
    return t('Lines and paragraphs are automatically recognized. The &lt;br /&gt; line break, &lt;p&gt; paragraph and &lt;/p&gt; close paragraph tags are inserted automatically. If paragraphs are not recognized simply add a couple blank lines.');
  }
  else {
    return t('Lines and paragraphs break automatically.');
  }
}
?>