1. per-feed option STRIP_IMAGES should now also affect other media tags
2. video/audio elements were not replaced with text links properly in low bandwidth mode
This commit is contained in:
parent
62d0060aa1
commit
d2e1e60ecc
|
@ -1682,9 +1682,10 @@
|
|||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (($owner && get_pref("STRIP_IMAGES", $owner)) ||
|
||||
$force_remove_images || $_SESSION["bw_limit"]) {
|
||||
if ($entry->hasAttribute('src') &&
|
||||
($owner && get_pref("STRIP_IMAGES", $owner)) || $force_remove_images || $_SESSION["bw_limit"]) {
|
||||
|
||||
$p = $doc->createElement('p');
|
||||
|
||||
|
@ -1697,7 +1698,16 @@
|
|||
|
||||
$p->appendChild($a);
|
||||
|
||||
if ($entry->nodeName == 'source') {
|
||||
|
||||
if ($entry->parentNode && $entry->parentNode->parentNode)
|
||||
$entry->parentNode->parentNode->replaceChild($p, $entry->parentNode);
|
||||
|
||||
} else if ($entry->nodeName == 'img') {
|
||||
|
||||
if ($entry->parentNode)
|
||||
$entry->parentNode->replaceChild($p, $entry);
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue