function messaging_text_format_htmlfast in Messaging 6.4
HTML quick filter
This one only fixes line endings when everything else is already formatted and filtered.
1 string reference to 'messaging_text_format_htmlfast'
- _messaging_text_filter_info in includes/
text.inc - Get built in filters info, will be provided on messaging_messaging('filter info')
File
- includes/
text.inc, line 135 - Drupal Messaging Framework - Text filtering functions
Code
function messaging_text_format_htmlfast($text) {
// Convert line breaks
return _filter_autop($text);
}