mirror of
https://github.com/friendica/friendica
synced 2024-11-10 11:42:54 +00:00
Store guid and plink with event (#5485)
* Store guid and plink with event * One space too much
This commit is contained in:
parent
a44eeda463
commit
be8b68aaaf
2 changed files with 3 additions and 1 deletions
|
@ -307,7 +307,7 @@ class Event extends BaseObject
|
|||
|
||||
Addon::callHooks('event_updated', $event['id']);
|
||||
} else {
|
||||
$event['guid'] = System::createGUID(32);
|
||||
$event['guid'] = defaults($arr, 'guid', System::createGUID(32));
|
||||
|
||||
// New event. Store it.
|
||||
DBA::insert('event', $event);
|
||||
|
@ -321,6 +321,7 @@ class Event extends BaseObject
|
|||
$item_arr['uri'] = $event['uri'];
|
||||
$item_arr['parent-uri'] = $event['uri'];
|
||||
$item_arr['guid'] = $event['guid'];
|
||||
$item_arr['plink'] = defaults($arr, 'plink', '');
|
||||
$item_arr['post-type'] = Item::PT_EVENT;
|
||||
$item_arr['wall'] = $event['cid'] ? 0 : 1;
|
||||
$item_arr['contact-id'] = $contact['id'];
|
||||
|
|
|
@ -2642,6 +2642,7 @@ class DFRN
|
|||
$ev["edited"] = $item["edited"];
|
||||
$ev["private"] = $item["private"];
|
||||
$ev["guid"] = $item["guid"];
|
||||
$ev["plink"] = $item["plink"];
|
||||
|
||||
$r = q(
|
||||
"SELECT `id` FROM `event` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
|
||||
|
|
Loading…
Reference in a new issue