[DanbooruBridge] Decode href of HTML element to avoid double escaping. (#1262)
Directly accessing ...->href resulted in a string that contained '&' instead of '&'. This was later escaped again to '&' in some formats (e.g. Atom).
This commit is contained in:
parent
f3c687604f
commit
6a99904e64
1 changed files with 1 additions and 1 deletions
|
@ -40,7 +40,7 @@ class DanbooruBridge extends BridgeAbstract {
|
||||||
defaultLinkTo($element, $this->getURI());
|
defaultLinkTo($element, $this->getURI());
|
||||||
|
|
||||||
$item = array();
|
$item = array();
|
||||||
$item['uri'] = $element->find('a', 0)->href;
|
$item['uri'] = html_entity_decode($element->find('a', 0)->href);
|
||||||
$item['postid'] = (int)preg_replace('/[^0-9]/', '', $element->getAttribute(static::IDATTRIBUTE));
|
$item['postid'] = (int)preg_replace('/[^0-9]/', '', $element->getAttribute(static::IDATTRIBUTE));
|
||||||
$item['timestamp'] = time();
|
$item['timestamp'] = time();
|
||||||
$thumbnailUri = $element->find('img', 0)->src;
|
$thumbnailUri = $element->find('img', 0)->src;
|
||||||
|
|
Loading…
Reference in a new issue