Skip to content

Commit

Permalink
Fix specialchars issue on title
Browse files Browse the repository at this point in the history
  • Loading branch information
Simounet committed Sep 23, 2022
1 parent d3683a6 commit f45f698
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Feed.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ function parse($syncId,&$nbEvents =0, $enableCache=true, $forceFeed=false){
$event = new Event();
$event->setSyncId($syncId);
$event->setGuid($item->get_id());
$event->setTitle($item->get_title());
$event->setTitle(html_entity_decode(htmlspecialchars_decode($item->get_title())));
$event->setPubdate(
''==$item->get_date()
? $this->lastupdate
Expand Down

0 comments on commit f45f698

Please sign in to comment.