Index: modules/filter/filter.module =================================================================== RCS file: /cvs/drupal/drupal/modules/filter/filter.module,v retrieving revision 1.204.2.16 diff -u -p -r1.204.2.16 filter.module --- modules/filter/filter.module 6 Aug 2010 11:20:12 -0000 1.204.2.16 +++ modules/filter/filter.module 23 Oct 2010 10:25:33 -0000 @@ -1219,7 +1219,7 @@ function _filter_xss_attributes($attr) { function filter_xss_bad_protocol($string, $decode = TRUE) { static $allowed_protocols; if (!isset($allowed_protocols)) { - $allowed_protocols = array_flip(variable_get('filter_allowed_protocols', array('http', 'https', 'ftp', 'news', 'nntp', 'telnet', 'mailto', 'irc', 'ssh', 'sftp', 'webcal', 'rtsp'))); + $allowed_protocols = array_flip(variable_get('filter_allowed_protocols', array('http', 'https', 'ftp', 'news', 'nntp', 'tel', 'telnet', 'mailto', 'irc', 'ssh', 'sftp', 'webcal', 'rtsp'))); } // Get the plain text representation of the attribute value (i.e. its meaning).