Fix html2text conversion of strong|b|a|th|h tags when used in upper case

pull/17/head
Aleksander Machniak 12 years ago
parent d4877917fc
commit b4a0b9285f

@ -1,6 +1,7 @@
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

@ -668,7 +668,7 @@ class html2text
*/
private function _preg_callback($matches)
{
switch($matches[1]) {
switch (strtolower($matches[1])) {
case 'b':
case 'strong':
return $this->_toupper($matches[2]);

Loading…
Cancel
Save