_filter_autop_tips
- Versions
- 7
_filter_autop_tips($filter, $format, $long = FALSE)
Filter tips callback for auto-paragraph filter.
Code
modules/filter/filter.module, line 1197
<?php
function _filter_autop_tips($filter, $format, $long = FALSE) {
if ($long) {
return t('Lines and paragraphs are automatically recognized. The <br /> line break, <p> paragraph and </p> 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.');
}
}
?>Login or register to post comments 