mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2024-11-27 03:50:42 +03:00
Merge pull request #104 from polo2ro/master
Fix some errors in the pinterest bridge
This commit is contained in:
commit
92cb904374
1 changed files with 3 additions and 7 deletions
|
@ -53,7 +53,7 @@ class PinterestBridge extends BridgeAbstract{
|
||||||
|
|
||||||
$item = new \Item();
|
$item = new \Item();
|
||||||
$item->uri = $this->getURI().$a->getAttribute('href');
|
$item->uri = $this->getURI().$a->getAttribute('href');
|
||||||
$item->content = '<img src="' . htmlentities($img->getAttribute('src')) . '" alt="" />';
|
$item->content = '<img src="' . htmlentities(str_replace('/236x/', '/736x/', $img->getAttribute('src'))) . '" alt="" />';
|
||||||
|
|
||||||
|
|
||||||
if (isset($this->query))
|
if (isset($this->query))
|
||||||
|
@ -68,13 +68,9 @@ class PinterestBridge extends BridgeAbstract{
|
||||||
|
|
||||||
$item->content .= '<br /><img align="left" style="margin: 2px 4px;" src="'.htmlentities($item->avatar).'" /> <strong>'.$item->username.'</strong>';
|
$item->content .= '<br /><img align="left" style="margin: 2px 4px;" src="'.htmlentities($item->avatar).'" /> <strong>'.$item->username.'</strong>';
|
||||||
$item->content .= '<br />'.$item->fullname;
|
$item->content .= '<br />'.$item->fullname;
|
||||||
} else {
|
|
||||||
|
|
||||||
$credit = $div->find('a.creditItem',0);
|
|
||||||
$item->content .= '<br />'.$credit->innertext;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
$item->title = basename($img->getAttribute('alt'));
|
$item->title = $img->getAttribute('alt');
|
||||||
|
|
||||||
//$item->timestamp = $media->created_time;
|
//$item->timestamp = $media->created_time;
|
||||||
$this->items[] = $item;
|
$this->items[] = $item;
|
||||||
|
@ -97,6 +93,6 @@ class PinterestBridge extends BridgeAbstract{
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getCacheDuration(){
|
public function getCacheDuration(){
|
||||||
return 0;
|
return 3600;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue