diff options
author | 2016-08-09 17:55:59 +0200 | |
---|---|---|
committer | 2016-08-09 17:55:59 +0200 | |
commit | 9f3e7e1da763d47250b34bca1df667bfe8292cc4 (patch) | |
tree | 7b25b163418fcfbc4bc3ede70f0a909953d27049 /bridges/PickyWallpapersBridge.php | |
parent | bb49aef187f83623c81b170801d13c6db35fba37 (diff) | |
parent | d79366f479eb345eff07581987fee1bfbb34a9b2 (diff) | |
download | rss-bridge-9f3e7e1da763d47250b34bca1df667bfe8292cc4.tar.gz rss-bridge-9f3e7e1da763d47250b34bca1df667bfe8292cc4.tar.zst rss-bridge-9f3e7e1da763d47250b34bca1df667bfe8292cc4.zip |
Merge pull request #340 from LogMANOriginal/HarmonizeFormats
Harmonize formats
Diffstat (limited to 'bridges/PickyWallpapersBridge.php')
-rw-r--r-- | bridges/PickyWallpapersBridge.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/bridges/PickyWallpapersBridge.php b/bridges/PickyWallpapersBridge.php index 18d1d356..b45a61b4 100644 --- a/bridges/PickyWallpapersBridge.php +++ b/bridges/PickyWallpapersBridge.php @@ -11,7 +11,7 @@ class PickyWallpapersBridge extends BridgeAbstract { $this->name = "PickyWallpapers Bridge"; $this->uri = "http://www.pickywallpapers.com/"; $this->description = "Returns the latests wallpapers from PickyWallpapers"; - $this->update = "2014-03-31"; + $this->update = "2016-08-09"; $this->parameters[] = '[ @@ -68,7 +68,6 @@ class PickyWallpapersBridge extends BridgeAbstract { $item->uri = str_replace('www', 'wallpaper', $baseUri).'/'.$this->resolution.'/'.basename($element->src); $item->timestamp = time(); $item->title = $element->alt; - $item->thumbnailUri = $element->src; $item->content = $item->title.'<br><a href="'.$item->uri.'">'.$element.'</a>'; $this->items[] = $item; |