diff options
author | Friendika <info@friendika.com> | 2011-06-13 20:42:37 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-06-13 20:42:37 -0700 |
commit | 05eb9ceaba9f87776b61a51a49a967cc578ef58a (patch) | |
tree | 6b2de7d5638c7b0671b7462f308cd664e99a6bb8 /mod | |
parent | fb92dbf5d683c3d92a76216c09d23e338c7d3341 (diff) | |
download | volse-hubzilla-05eb9ceaba9f87776b61a51a49a967cc578ef58a.tar.gz volse-hubzilla-05eb9ceaba9f87776b61a51a49a967cc578ef58a.tar.bz2 volse-hubzilla-05eb9ceaba9f87776b61a51a49a967cc578ef58a.zip |
avoid returning events from getting posted again
Diffstat (limited to 'mod')
-rw-r--r-- | mod/dfrn_notify.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mod/dfrn_notify.php b/mod/dfrn_notify.php index 949d9f9ab..6ca3f9fc2 100644 --- a/mod/dfrn_notify.php +++ b/mod/dfrn_notify.php @@ -599,6 +599,7 @@ function dfrn_notify_post(&$a) { if(x($ev,'desc') && x($ev,'start')) { $ev['cid'] = $importer['id']; $ev['uid'] = $importer['uid']; + $ev['uri'] = $item_id; $r = q("SELECT * FROM `event` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1", dbesc($item_id), |