From 75c520dffbd2e7308202094a8b89554ae1073002 Mon Sep 17 00:00:00 2001 From: John Hobbs Date: Tue, 19 Jan 2010 14:31:30 -0600 Subject: [PATCH] SourceModel::getTitle() is for the name of the service, not the user. --- models/GithubModel.php | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/models/GithubModel.php b/models/GithubModel.php index dbf0fc7..8967a10 100644 --- a/models/GithubModel.php +++ b/models/GithubModel.php @@ -52,12 +52,7 @@ public function getAccountName() { } public function getTitle() { - if ($name = $this->getProperty('username')) { - return $name; - } - else { - return $this->getServiceName(); - } + return $this->getServiceName(); } public function importData() {