forked from blallo/rss-bridge
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->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))
|
||||
|
@ -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 />'.$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;
|
||||
$this->items[] = $item;
|
||||
|
@ -97,6 +93,6 @@ class PinterestBridge extends BridgeAbstract{
|
|||
}
|
||||
|
||||
public function getCacheDuration(){
|
||||
return 0;
|
||||
return 3600;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue