function _spamspan_callback_email in SpamSpan filter 6
1 string reference to '_spamspan_callback_email'
- spamspan in ./spamspan.module 
- Scan text and replace email addresses with span tags
File
- ./spamspan.module, line 162 
- This module implements the spamspan technique (http://www.spamspan.com ) for hiding email addresses from spambots.
Code
function _spamspan_callback_email($matches) {
  return _spamspan_output($matches[1], $matches[2], '', '');
}