Fix html2text conversion of strong|b|a|th|h tags when used in upper case
| | |
| | | CHANGELOG Roundcube Webmail |
| | | =========================== |
| | | |
| | | - Fix html2text conversion of strong|b|a|th|h tags when used in upper case |
| | | - Add listcontrols template container in Larry skin (#1488498) |
| | | - Fix host autoselection when default_host is an array (#1488495) |
| | | - Move messages forwarding mode setting into Preferences |
| | |
| | | */ |
| | | private function _preg_callback($matches) |
| | | { |
| | | switch($matches[1]) { |
| | | switch (strtolower($matches[1])) { |
| | | case 'b': |
| | | case 'strong': |
| | | return $this->_toupper($matches[2]); |