mirror of
https://github.com/friendica/friendica
synced 2025-04-27 01:10:14 +00:00
UUID is now createUUID
This commit is contained in:
parent
5639054699
commit
cb9be8a7ab
12 changed files with 20 additions and 20 deletions
|
@ -46,7 +46,7 @@ class Mail
|
|||
return -2;
|
||||
}
|
||||
|
||||
$guid = System::UUID();
|
||||
$guid = System::createUUID();
|
||||
$uri = 'urn:X-dfrn:' . System::baseUrl() . ':' . local_user() . ':' . $guid;
|
||||
|
||||
$convid = 0;
|
||||
|
@ -73,7 +73,7 @@ class Mail
|
|||
$recip_handle = (($contact['addr']) ? $contact['addr'] : $contact['nick'] . '@' . $recip_host);
|
||||
$sender_handle = $a->user['nickname'] . '@' . substr(System::baseUrl(), strpos(System::baseUrl(), '://') + 3);
|
||||
|
||||
$conv_guid = System::UUID();
|
||||
$conv_guid = System::createUUID();
|
||||
$convuri = $recip_handle . ':' . $conv_guid;
|
||||
|
||||
$handles = $recip_handle . ';' . $sender_handle;
|
||||
|
@ -171,7 +171,7 @@ class Mail
|
|||
$subject = L10n::t('[no subject]');
|
||||
}
|
||||
|
||||
$guid = System::UUID();
|
||||
$guid = System::createUUID();
|
||||
$uri = 'urn:X-dfrn:' . System::baseUrl() . ':' . local_user() . ':' . $guid;
|
||||
|
||||
$me = Probe::uri($replyto);
|
||||
|
@ -180,7 +180,7 @@ class Mail
|
|||
return -2;
|
||||
}
|
||||
|
||||
$conv_guid = System::UUID();
|
||||
$conv_guid = System::createUUID();
|
||||
|
||||
$recip_handle = $recipient['nickname'] . '@' . substr(System::baseUrl(), strpos(System::baseUrl(), '://') + 3);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue