aboutsummaryrefslogtreecommitdiff
path: root/bridges/ViadeoCompany.php
diff options
context:
space:
mode:
authorGravatar Mitsu <mitsukarenai@users.noreply.github.com> 2016-08-09 17:55:59 +0200
committerGravatar GitHub <noreply@github.com> 2016-08-09 17:55:59 +0200
commit9f3e7e1da763d47250b34bca1df667bfe8292cc4 (patch)
tree7b25b163418fcfbc4bc3ede70f0a909953d27049 /bridges/ViadeoCompany.php
parentbb49aef187f83623c81b170801d13c6db35fba37 (diff)
parentd79366f479eb345eff07581987fee1bfbb34a9b2 (diff)
downloadrss-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/ViadeoCompany.php')
-rw-r--r--bridges/ViadeoCompany.php5
1 files changed, 2 insertions, 3 deletions
diff --git a/bridges/ViadeoCompany.php b/bridges/ViadeoCompany.php
index 325cf1aa..d5369a5b 100644
--- a/bridges/ViadeoCompany.php
+++ b/bridges/ViadeoCompany.php
@@ -7,7 +7,7 @@ class ViadeoCompany extends BridgeAbstract{
$this->name = "Viadeo Company";
$this->uri = "https://www.viadeo.com/";
$this->description = "Returns most recent actus from Company on Viadeo. (http://www.viadeo.com/fr/company/<strong style=\"font-weight:bold;\">apple</strong>)";
- $this->update = "2015-12-22";
+ $this->update = "2016-08-09";
$this->parameters[] =
'[
@@ -30,8 +30,7 @@ class ViadeoCompany extends BridgeAbstract{
$item = new \Item();
$item->uri = $link;
$item->title = mb_substr($element->find('p', 0)->innertext, 0 ,100);
- $item->content = $element->find('p', 0)->innertext;
- $item->thumbnailUri = str_replace('//', 'http://', $element->find('img.usage-article__image_only', 0)->src);
+ $item->content = $element->find('p', 0)->innertext;;
$this->items[] = $item;
$i++;
}