_drupal_html_to_text_clean
- Versions
- 6 – 7
_drupal_html_to_text_clean($indent)
Helper function for drupal_wrap_mail() and drupal_html_to_text().
Replace all non-quotation markers from a given piece of indentation with spaces.
Code
includes/mail.inc, line 461
<?php
function _drupal_html_to_text_clean($indent) {
return preg_replace('/[^>]/', ' ', $indent);
}
?>Login or register to post comments 