aboutsummaryrefslogtreecommitdiffstats
path: root/mod
diff options
context:
space:
mode:
Diffstat (limited to 'mod')
-rwxr-xr-xmod/events.php22
1 files changed, 13 insertions, 9 deletions
diff --git a/mod/events.php b/mod/events.php
index ca09385ef..d76602a33 100755
--- a/mod/events.php
+++ b/mod/events.php
@@ -205,19 +205,23 @@ function events_post(&$a) {
$item_id = event_store_item($datarray,$event);
- if($r) {
- xchan_query($r);
- $sync_item = fetch_post_tags($r);
- $z = q("select * from event where event_hash = '%s' and uid = %d limit 1",
- dbesc($r[0]['resource_id']),
- intval($channel['channel_id'])
+ if($item_id) {
+ $r = q("select * from item where id = %d",
+ intval($item_id)
);
- if($z) {
- build_sync_packet($channel['channel_id'],array('event_item' => array(encode_item($sync_item[0],true)),'event' => $z));
+ if($r) {
+ xchan_query($r);
+ $sync_item = fetch_post_tags($r);
+ $z = q("select * from event where event_hash = '%s' and uid = %d limit 1",
+ dbesc($r[0]['resource_id']),
+ intval($channel['channel_id'])
+ );
+ if($z) {
+ build_sync_packet($channel['channel_id'],array('event_item' => array(encode_item($sync_item[0],true)),'event' => $z));
+ }
}
}
-
if($share)
proc_run('php',"include/notifier.php","event","$item_id");