Shorthand function for getActor

This commit is contained in:
Mikael Nordfeldth 2015-10-03 00:43:34 +02:00
parent b8f52965a9
commit 0c6fe78a73
1 changed files with 1 additions and 6 deletions

View File

@ -423,12 +423,7 @@ class Fave extends Managed_DataObject
public function getActor()
{
$profile = new Profile();
$profile->id = $this->user_id;
if (!$profile->find(true)) {
throw new NoResultException($profile);
}
return $profile;
return Profile::getByID($this->user_id);
}
public function getActorObject()