function _drupal_html_to_text_clean

Replaces non-quotation markers from a given piece of indentation with spaces.

Callback for array_map() within drupal_html_to_text().

1 call to _drupal_html_to_text_clean()
1 string reference to '_drupal_html_to_text_clean'

File

drupal/includes/mail.inc, line 604
API functions for processing and sending e-mail.

Code

function _drupal_html_to_text_clean($indent) {
  return preg_replace('/[^>]/', ' ', $indent);
}