fix missing '.'

This commit is contained in:
Matt DeMoss 2018-01-02 16:08:42 -05:00
parent 19422c045d
commit 8e926dfaf9

View File

@ -82,7 +82,7 @@ class TwitterBridge extends BridgeAbstract {
break;
default: return parent::getName();
}
return 'Twitter List ' . $this->getInput($param) . ' by ' $specific;
return 'Twitter List ' . $this->getInput($param) . ' by ' . $specific;
}
public function getURI(){
@ -162,6 +162,7 @@ class TwitterBridge extends BridgeAbstract {
// generate the title
$item['title'] = strip_tags($this->fixAnchorSpacing($tweet->find('p.js-tweet-text', 0), '<a>'));
switch($this->queriedContext) {
case 'By list':
// Check if filter applies to list (using raw content)
@ -174,6 +175,7 @@ class TwitterBridge extends BridgeAbstract {
default:
}
$this->processContentLinks($tweet);
$this->processEmojis($tweet);