aboutsummaryrefslogtreecommitdiffstats
path: root/include/items.php
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2011-06-13 19:06:49 -0700
committerFriendika <info@friendika.com>2011-06-13 19:06:49 -0700
commitd5fdd4287dec00adcb08e389385b1ecbc23cca6a (patch)
tree87aa51b8d37d153701e077e9f090ffe6c6579ab0 /include/items.php
parentd66056af9d56d86fdb57061c83c9187ea9f51403 (diff)
downloadvolse-hubzilla-d5fdd4287dec00adcb08e389385b1ecbc23cca6a.tar.gz
volse-hubzilla-d5fdd4287dec00adcb08e389385b1ecbc23cca6a.tar.bz2
volse-hubzilla-d5fdd4287dec00adcb08e389385b1ecbc23cca6a.zip
event sharing, cont.
Diffstat (limited to 'include/items.php')
-rw-r--r--include/items.php10
1 files changed, 8 insertions, 2 deletions
diff --git a/include/items.php b/include/items.php
index db500fda2..514bd1efa 100644
--- a/include/items.php
+++ b/include/items.php
@@ -1337,14 +1337,20 @@ function consume_feed($xml,$importer,&$contact, &$hub, $datedir = 0, $secure_fee
if((x($datarray,'object-type')) && ($datarray['object-type'] === ACTIVITY_OBJ_EVENT)) {
$ev = bbtoevent($datarray['body']);
if(x($ev,'desc') && x($ev,'start')) {
+ $ev['uid'] = $importer['uid'];
+ if(is_array($contact))
+ $ev['cid'] = $contact['id'];
$r = q("SELECT * FROM `event` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
dbesc($item_id),
intval($importer['uid'])
);
- // import/update event
-
+ if(count($r))
+ $ev['id'] = $r[0]['id'];
+ $xyz = event_store($ev);
+ continue;
}
}
+
$r = q("SELECT `uid`, `last-child`, `edited`, `body` FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
dbesc($item_id),
intval($importer['uid'])