mirror of
https://github.com/friendica/friendica
synced 2025-04-23 21:10:12 +00:00
Another renamed function
This commit is contained in:
parent
8841519c0d
commit
78a7e130ae
2 changed files with 3 additions and 3 deletions
|
@ -187,7 +187,7 @@ class Transmitter
|
|||
* @param integer $uid User ID
|
||||
* @return profile array
|
||||
*/
|
||||
public static function profile($uid)
|
||||
public static function getProfile($uid)
|
||||
{
|
||||
$condition = ['uid' => $uid, 'blocked' => false, 'account_expired' => false,
|
||||
'account_removed' => false, 'verified' => true];
|
||||
|
@ -722,7 +722,7 @@ class Transmitter
|
|||
'id' => System::baseUrl() . '/activity/' . System::createGUID(),
|
||||
'type' => 'Update',
|
||||
'actor' => $owner['url'],
|
||||
'object' => self::profile($uid),
|
||||
'object' => self::getProfile($uid),
|
||||
'published' => DateTimeFormat::utcNow(DateTimeFormat::ATOM),
|
||||
'to' => [$profile['followers']],
|
||||
'cc' => []];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue