diff options
author | friendica <info@friendica.com> | 2014-09-23 20:36:10 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-09-23 20:36:10 -0700 |
commit | f203d2a3b0955211b00743d2cc6c3a8a1347bbdd (patch) | |
tree | 325f5da98be1c6f2a41997e1b0a8ddf18f85d676 /include/items.php | |
parent | 2b466ccb8ca24197b510d21229a3b68ed3760a59 (diff) | |
download | volse-hubzilla-f203d2a3b0955211b00743d2cc6c3a8a1347bbdd.tar.gz volse-hubzilla-f203d2a3b0955211b00743d2cc6c3a8a1347bbdd.tar.bz2 volse-hubzilla-f203d2a3b0955211b00743d2cc6c3a8a1347bbdd.zip |
diaspora private mail seems to work now - but there's an obfuscation leak via the conversation structure that needs to be dealt with.
Diffstat (limited to 'include/items.php')
-rwxr-xr-x | include/items.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/items.php b/include/items.php index 53a0b25a9..dbea5779c 100755 --- a/include/items.php +++ b/include/items.php @@ -1428,6 +1428,8 @@ function get_atom_elements($feed,$item,&$author) { $res['title'] = unxmlify($item->get_title()); $res['body'] = unxmlify($item->get_content()); $res['plink'] = unxmlify($item->get_link(0)); + $res['item_flags'] = ITEM_RSS; + // removing the content of the title if its identically to the body // This helps with auto generated titles e.g. from tumblr @@ -3196,7 +3198,6 @@ function mail_store($arr) { } - /** * * consume_feed - process atom feed and update anything/everything we might need to update |