Download & Extend

Added line to display special characters in feed in UTF-8 format (example the ' sign)

Project:XSPF Playlist
Version:5.x-1.20-beta1
Component:Code
Category:task
Priority:normal
Assigned:Unassigned
Status:needs work

Issue Summary

This came up in the playlist as & or something like that so changed lines 425-428 from

$item[] = array(
'key' => 'title',
'value' => check_plain($node->title),
);

to

$item[] = array(
'key' => 'title',
'value' => decode_entities(check_plain($node->title)),
);

To make it appear as the ' sign that it should be

The JWPlayer apparantly can't read html

Comments

#1

& # 039 ; - this (without the spaces) is what came up

#2

Status:needs review» needs work

i'd want to run that by someone more familiar with security vis-a-viz the xspf standard. what does xspf say about that?