mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-05 17:19:37 +00:00
[core] Fix defaultLinkTo for simple_html_dom objects (#3404)
This commit is contained in:
parent
cfe81ab2ac
commit
3e0d024888
14
lib/html.php
14
lib/html.php
@ -187,18 +187,12 @@ function defaultLinkTo($dom, $url)
|
|||||||
|
|
||||||
// Use long method names for compatibility with simple_html_dom and DOMDocument
|
// Use long method names for compatibility with simple_html_dom and DOMDocument
|
||||||
|
|
||||||
$images = $dom->getElementsByTagName('img');
|
foreach ($dom->getElementsByTagName('img', null) as $image) {
|
||||||
if (is_array($images)) {
|
$image->setAttribute('src', urljoin($url, $image->getAttribute('src')));
|
||||||
foreach ($images as $image) {
|
|
||||||
$image->setAttribute('src', urljoin($url, $image->getAttribute('src')));
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
$anchors = $dom->getElementsByTagName('a');
|
foreach ($dom->getElementsByTagName('a', null) as $anchor) {
|
||||||
if (is_array($anchors)) {
|
$anchor->setAttribute('href', urljoin($url, $anchor->getAttribute('href')));
|
||||||
foreach ($anchors as $anchor) {
|
|
||||||
$anchor->setAttribute('href', urljoin($url, $anchor->getAttribute('href')));
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Will never be true for DOMDocument
|
// Will never be true for DOMDocument
|
||||||
|
Loading…
Reference in New Issue
Block a user