From 45f147ec24b74d7d370bca717db5d6eca3ec0a81 Mon Sep 17 00:00:00 2001 From: pauder Date: Tue, 11 Mar 2014 11:17:57 +0100 Subject: [PATCH] Use the full size image in feed instead of the small sized version --- bridges/PinterestBridge.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bridges/PinterestBridge.php b/bridges/PinterestBridge.php index 8c24ecde..78fb9e21 100644 --- a/bridges/PinterestBridge.php +++ b/bridges/PinterestBridge.php @@ -39,7 +39,7 @@ class PinterestBridge extends BridgeAbstract{ $item = new \Item(); $item->uri = $this->getURI().$a->getAttribute('href'); - $item->content = ''; + $item->content = ''; if (isset($this->query)) @@ -83,6 +83,6 @@ class PinterestBridge extends BridgeAbstract{ } public function getCacheDuration(){ - return 0; + return 3600; } }