mirror of
https://github.com/friendica/friendica
synced 2024-11-10 06:22:53 +00:00
xmlify enclosure items
This commit is contained in:
parent
109c25a1bd
commit
c8d827a671
1 changed files with 2 additions and 2 deletions
|
@ -1591,11 +1591,11 @@ function item_getfeedattach($item) {
|
|||
$matches = false;
|
||||
$cnt = preg_match('|\<a href=\"(.+?)\" size=\"(.+?)\" type=\"(.+?)\" >(.+?)</a>|',$r,$matches);
|
||||
if($cnt) {
|
||||
$ret .= '<link rel="enclosure" href="' . $matches[1] . '" type="' . $matches[3] . '" ';
|
||||
$ret .= '<link rel="enclosure" href="' . xmlify($matches[1]) . '" type="' . xmlify($matches[3]) . '" ';
|
||||
if(intval($matches[2]))
|
||||
$ret .= 'size="' . intval($matches[2]) . '" ';
|
||||
if($matches[4] !== ' ')
|
||||
$ret .= 'title="' . $matches[4] . '" ';
|
||||
$ret .= 'title="' . xmlify($matches[4]) . '" ';
|
||||
$ret .= ' />' . "\r\n";
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue