aboutsummaryrefslogtreecommitdiff
path: root/bridges/GithubIssueBridge.php
diff options
context:
space:
mode:
Diffstat (limited to 'bridges/GithubIssueBridge.php')
-rw-r--r--bridges/GithubIssueBridge.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/bridges/GithubIssueBridge.php b/bridges/GithubIssueBridge.php
index 4c56cf0a..84b1f56c 100644
--- a/bridges/GithubIssueBridge.php
+++ b/bridges/GithubIssueBridge.php
@@ -12,7 +12,7 @@ class GithubIssueBridge extends BridgeAbstract{
$this->name = 'Github Issue';
$this->uri = '';
$this->description = 'Returns the comments of a github project issue';
- $this->update = '2016-06-25';
+ $this->update = '2016-08-09';
$this->parameters[]=
'[
@@ -40,7 +40,7 @@ class GithubIssueBridge extends BridgeAbstract{
foreach($html->find('.js-comment-container') as $comment){
$item = new \Item();
- $item->name=$comment->find('img',0)->getAttribute('alt');
+ $item->author=$comment->find('img',0)->getAttribute('alt');
$comment=$comment->firstChild()->nextSibling();