From 01c16913499fa660c58ad0f2b2efd86913473c03 Mon Sep 17 00:00:00 2001 From: Pellaeon Lin Date: Tue, 21 Feb 2017 17:26:40 +0800 Subject: [PATCH] Fix FacebookBridge title building after merging --- bridges/FacebookBridge.php | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/bridges/FacebookBridge.php b/bridges/FacebookBridge.php index cf2e9b41..84bb6446 100644 --- a/bridges/FacebookBridge.php +++ b/bridges/FacebookBridge.php @@ -272,11 +272,6 @@ EOD; } public function getName(){ - if(!empty($this->authorName)){ - return isset($this->extraInfos['name']) ? $this->extraInfos['name'] : $this->authorName - . ' - Facebook Bridge'; - } - - return parent::getName(); + return isset($this->extraInfos['name']) ? $this->extraInfos['name'] : $this->authorName.' - Facebook Bridge'; } }