diff options
author | marijus <mario@mariovavti.com> | 2014-07-25 09:42:50 +0200 |
---|---|---|
committer | marijus <mario@mariovavti.com> | 2014-07-25 09:42:50 +0200 |
commit | 9938f0c52b44b6173e02386d3415fbc69ac107ea (patch) | |
tree | 5bdaaa2ba0fb8e48c3fd66bdd823a62928e30d67 /include/zot.php | |
parent | 9c40ee9e60df1eef0466f1c9f3cd9c30e429c80a (diff) | |
parent | 18f5890cb14e7c40909fdb92bffefee3415ba411 (diff) | |
download | volse-hubzilla-9938f0c52b44b6173e02386d3415fbc69ac107ea.tar.gz volse-hubzilla-9938f0c52b44b6173e02386d3415fbc69ac107ea.tar.bz2 volse-hubzilla-9938f0c52b44b6173e02386d3415fbc69ac107ea.zip |
Merge branch 'master' of https://github.com/friendica/red
Diffstat (limited to 'include/zot.php')
-rw-r--r-- | include/zot.php | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/include/zot.php b/include/zot.php index 0fbeed519..5df217c03 100644 --- a/include/zot.php +++ b/include/zot.php @@ -1648,11 +1648,6 @@ function delete_imported_item($sender,$item,$uid) { require_once('include/items.php'); - // FIXME issue #230 is related - // Chicken/egg problem because we have to drop_item, but this removes information that tag_deliver may need to do its stuff. - // We can't reverse the order because drop_item refuses to run if the item already has the deleted flag set and we need to - // set that flag prior to calling tag_deliver. - // Use phased deletion to set the deleted flag, call both tag_deliver and the notifier to notify downstream channels // and then clean up after ourselves with a cron job after several days to do the delete_item_lowlevel() (DROPITEM_PHASE2). @@ -2104,6 +2099,7 @@ function build_sync_packet($uid = 0, $packet = null, $groups_changed = false) { $info = (($packet) ? $packet : array()); $info['type'] = 'channel_sync'; + $info['encoding'] = 'red'; // note: not zot, this packet is very red specific if(array_key_exists($uid,$a->config) && array_key_exists('transient',$a->config[$uid])) { $settings = $a->config[$uid]['transient']; |