Hello
There an issue with Joomla 2.5.14 and PHP 5.4+.
This issue has not been fixed: http://joomlacode.org/gf/project/joomla/tracker/?action=TrackerItemEdit&tracker_item_id=31786&start=0
It appears closed.
The function get_html_translation_table is returning the incorrect encoding .
This line should be changed to this:
$trans_tbl = get_html_translation_table(HTML_ENTITIES, ENT_COMPAT | ENT_HTML401, "ISO-8859-1");
and not this :
$trans_tbl = get_html_translation_table(HTML_ENTITIES);
closed as the related issue tracker item now reports that 3.x has been fixed as well
Labels |
Added:
?
|
||
Build | ⇒ | staging |
It actually has been fixed in the 2.5 branch - https://github.com/joomla/joomla-cms/blob/2.5.x/libraries/joomla/filter/input.php#L637 - Note it was committed after 2.5.14's release, so the fix hasn't made it out in a release yet.\
Oddly enough, the patch for 3.x hasn't been applied.