Show full acct uri as html title on link mouseover

This commit is contained in:
Mikael Nordfeldth
2017-04-06 11:45:58 +02:00
parent 9e89a177c7
commit 2ce2201496
2 changed files with 11 additions and 3 deletions

View File

@@ -1532,6 +1532,14 @@ class Profile extends Managed_DataObject
}
return $url;
}
public function getHtmlTitle()
{
try {
return $this->getAcctUri(false);
} catch (ProfileNoAcctUriException $e) {
return $this->getNickname();
}
}
public function getNickname()
{