always add a length to ostatus compat enclosures - even if unknown (0)
This commit is contained in:
parent
a94a42d609
commit
2fea5ff889
@ -1441,7 +1441,7 @@ function atom_entry($item, $type, $author, $owner, $comment = false, $cid = 0, $
|
||||
foreach($compat_photos as $enc) {
|
||||
$o .= '<link rel="enclosure" '
|
||||
. (($enc['href']) ? 'href="' . $enc['href'] . '" ' : '')
|
||||
. (($enc['length']) ? 'length="' . $enc['length'] . '" ' : '')
|
||||
. ((array_key_exists('length',$enc)) ? 'length="' . $enc['length'] . '" ' : '')
|
||||
. (($enc['type']) ? 'type="' . $enc['type'] . '" ' : '')
|
||||
. ' />' . "\r\n";
|
||||
}
|
||||
|
Reference in New Issue
Block a user