diff options
author | friendica <info@friendica.com> | 2013-01-14 16:49:57 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-01-14 16:49:57 -0800 |
commit | 639325b235deb67396b7e0b64c043f85599e6641 (patch) | |
tree | 657eb033e81ddf6bfdd49aba1926d2532dd8b1a4 /include/ConversationObject.php | |
parent | 67868a30940545be00360aad43e564767c536f98 (diff) | |
download | volse-hubzilla-639325b235deb67396b7e0b64c043f85599e6641.tar.gz volse-hubzilla-639325b235deb67396b7e0b64c043f85599e6641.tar.bz2 volse-hubzilla-639325b235deb67396b7e0b64c043f85599e6641.zip |
progress on pages - they're still getting lost inside conversation(), but progress is progress.
Diffstat (limited to 'include/ConversationObject.php')
-rw-r--r-- | include/ConversationObject.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/ConversationObject.php b/include/ConversationObject.php index 033ce7f76..37633369e 100644 --- a/include/ConversationObject.php +++ b/include/ConversationObject.php @@ -49,6 +49,10 @@ class Conversation extends BaseObject { $this->profile_owner = $a->profile['uid']; $this->writable = perm_is_allowed($this->profile_owner,$ob_hash,'post_comments'); break; + case 'page': + $this->profile_owner = $a->profile['uid']; + $this->writable = perm_is_allowed($this->profile_owner,$ob_hash,'post_comments'); + break; default: logger('[ERROR] Conversation::set_mode : Unhandled mode ('. $mode .').', LOGGER_DEBUG); return false; |