Posted by benced on February 10, 2009 at 9:03pm
Jump to:
| 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
i'd want to run that by someone more familiar with security vis-a-viz the xspf standard. what does xspf say about that?