From 58322137d321a157e6ae038e3ccd52365e400283 Mon Sep 17 00:00:00 2001 From: logmanoriginal Date: Wed, 3 Aug 2016 21:26:00 +0200 Subject: [PATCH] Fix author tag in source ('author' -> 'creator') --- bridges/NextInpactBridge.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bridges/NextInpactBridge.php b/bridges/NextInpactBridge.php index 0306edf8..bd6665b5 100644 --- a/bridges/NextInpactBridge.php +++ b/bridges/NextInpactBridge.php @@ -7,7 +7,7 @@ class NextInpactBridge extends BridgeAbstract { $this->name = "NextInpact Bridge"; $this->uri = "http://www.nextinpact.com/"; $this->description = "Returns the newest articles."; - $this->update = "2015-10-23"; + $this->update = "2016-08-03"; } @@ -38,7 +38,7 @@ class NextInpactBridge extends BridgeAbstract { $item->title = $this->StripCDATA($element->find('title', 0)->innertext); $item->uri = $this->StripCDATA($element->find('guid', 0)->plaintext); $item->thumbnailUri = $this->StripCDATA($element->find('enclosure', 0)->url); - $item->author = $this->StripCDATA($element->find('author', 0)->innertext); + $item->author = $this->StripCDATA($element->find('creator', 0)->innertext); $item->timestamp = strtotime($element->find('pubDate', 0)->plaintext); $item->content = $this->ExtractContent($item->uri); $this->items[] = $item;