diff options
author | friendica <info@friendica.com> | 2011-12-07 14:04:34 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2011-12-07 14:04:34 -0800 |
commit | d100944fe625d08da53ca69ab7ed6fefb4f653fc (patch) | |
tree | 2c15218ec335281fcb324a476488ccf5c45d0e7a /mod/message.php | |
parent | efeb377a125a0b5bf1c7a6007482d3a43384dec3 (diff) | |
download | volse-hubzilla-d100944fe625d08da53ca69ab7ed6fefb4f653fc.tar.gz volse-hubzilla-d100944fe625d08da53ca69ab7ed6fefb4f653fc.tar.bz2 volse-hubzilla-d100944fe625d08da53ca69ab7ed6fefb4f653fc.zip |
api post default to default post permissions was broken
Diffstat (limited to 'mod/message.php')
-rw-r--r-- | mod/message.php | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/mod/message.php b/mod/message.php index 7a3b870b3..4b494e906 100644 --- a/mod/message.php +++ b/mod/message.php @@ -107,12 +107,15 @@ function message_content(&$a) { ); // remove diaspora conversation pointer - - if($convid) { - q("delete from conv where id = %d limit 1", - intval($convid) - ); - } + // Actually if we do this, we can never receive another reply to that conversation, + // as we will never again have the info we need to re-create it. + // We'll just have to orphan it. + + //if($convid) { + // q("delete from conv where id = %d limit 1", + // intval($convid) + // ); + //} if($r) info( t('Conversation removed.') . EOL ); |