Skip to content
This repository has been archived by the owner on Mar 17, 2018. It is now read-only.

Commit

Permalink
Decode entities in existing data when displaying the field
Browse files Browse the repository at this point in the history
  • Loading branch information
Brandon Kelly committed Aug 17, 2011
1 parent c0e50de commit a1e99a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ee2/third_party/pt_list/ft.pt_list.php
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ function display_field($data, $cell = FALSE)

if ($data)
{
$list = is_array($data) ? $data : explode("\n", $data);
$list = is_array($data) ? $data : explode("\n", html_entity_decode($data));

foreach($list as $li)
{
Expand Down

0 comments on commit a1e99a9

Please sign in to comment.