diff options
author | friendica <info@friendica.com> | 2014-09-22 21:37:19 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-09-22 21:37:19 -0700 |
commit | fb05919d90cac9bb360bbb62b7e89d5c0e59b484 (patch) | |
tree | a223ce505137d1ddbfa17132c46bf09e3ed511c1 /include/ConversationObject.php | |
parent | b735961560d676f46bc43679f169ec2b0134de69 (diff) | |
download | volse-hubzilla-fb05919d90cac9bb360bbb62b7e89d5c0e59b484.tar.gz volse-hubzilla-fb05919d90cac9bb360bbb62b7e89d5c0e59b484.tar.bz2 volse-hubzilla-fb05919d90cac9bb360bbb62b7e89d5c0e59b484.zip |
make discover items interactive
Diffstat (limited to 'include/ConversationObject.php')
-rw-r--r-- | include/ConversationObject.php | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/include/ConversationObject.php b/include/ConversationObject.php index 767ef7360..c0fc376ae 100644 --- a/include/ConversationObject.php +++ b/include/ConversationObject.php @@ -52,14 +52,14 @@ class Conversation extends BaseObject { switch($mode) { case 'network': - if(array_key_exists('firehose',$a->data) && intval($a->data['firehose'])) { - $this->profile_owner = intval($a->data['firehose']); - $this->writable = false; - } - else { +// if(array_key_exists('firehose',$a->data) && intval($a->data['firehose'])) { +// $this->profile_owner = intval($a->data['firehose']); +// $this->writable = false; +// } +// else { $this->profile_owner = local_user(); $this->writable = true; - } +// } break; case 'channel': $this->profile_owner = $a->profile['profile_uid']; |