Changeset 2d7b4ff in github


Ignore:
Timestamp:
May 28, 2012 2:36:28 AM (13 months ago)
Author:
Aleksander Machniak <alec@…>
Branches:
master, HEAD, dev-browser-capabilities, pdo
Children:
e349a8c, 96077f6
Parents:
077befb
Message:

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

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • CHANGELOG

    r077befb r2d7b4ff  
    22=========================== 
    33 
     4- Fix html2text conversion of strong|b|a|th|h tags when used in upper case 
    45- Add listcontrols template container in Larry skin (#1488498) 
    56- Fix host autoselection when default_host is an array (#1488495) 
  • program/lib/html2text.php

    r43c40f0 r2d7b4ff  
    669669    private function _preg_callback($matches) 
    670670    { 
    671         switch($matches[1]) { 
     671        switch (strtolower($matches[1])) { 
    672672        case 'b': 
    673673        case 'strong': 
Note: See TracChangeset for help on using the changeset viewer.