mirror of
https://github.com/friendica/friendica
synced 2025-04-26 19:50:10 +00:00
Remove unused uid parameter in Item::newURI
This commit is contained in:
parent
b31c2f4ec1
commit
eb8237dd89
10 changed files with 17 additions and 18 deletions
|
@ -154,7 +154,7 @@ class Mail
|
|||
Photo::setPermissionFromBody($body, local_user(), $me['id'], '<' . $contact['id'] . '>', '', '', '');
|
||||
|
||||
$guid = System::createUUID();
|
||||
$uri = Item::newURI(local_user(), $guid);
|
||||
$uri = Item::newURI($guid);
|
||||
|
||||
$convid = 0;
|
||||
$reply = false;
|
||||
|
@ -266,7 +266,7 @@ class Mail
|
|||
}
|
||||
|
||||
$guid = System::createUUID();
|
||||
$uri = Item::newURI(local_user(), $guid);
|
||||
$uri = Item::newURI($guid);
|
||||
|
||||
$me = Contact::getByURL($replyto);
|
||||
if (!$me['name']) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue