Added # to washtml's regex for safe links (some list digests have tables of contents that use internal links).
| | |
| | | $key = strtolower($key); |
| | | $value = $node->getAttribute($key); |
| | | if(isset($this->_html_attribs[$key]) || |
| | | ($key == 'href' && preg_match('/^(http|https|ftp|mailto):.+/i', $value))) |
| | | ($key == 'href' && preg_match('/^(http:|https:|ftp:|mailto:|#).+/i', $value))) |
| | | $t .= ' ' . $key . '="' . htmlspecialchars($value, ENT_QUOTES) . '"'; |
| | | else if($key == 'style' && ($style = $this->wash_style($value))) |
| | | $t .= ' style="' . $style . '"'; |