diff options
author | zotlabs <mike@macgirvin.com> | 2017-11-22 15:39:06 -0800 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2017-11-22 15:39:06 -0800 |
commit | 6c178d44858bbdfd582d09eb4568d32292c0b2c2 (patch) | |
tree | ef71ebbdd8629b8c66a52f8b14d0e9db16670499 /Zotlabs/Lib | |
parent | 8bd8af7d16d6b4fb40680bd33b99bbfd582a1208 (diff) | |
download | volse-hubzilla-6c178d44858bbdfd582d09eb4568d32292c0b2c2.tar.gz volse-hubzilla-6c178d44858bbdfd582d09eb4568d32292c0b2c2.tar.bz2 volse-hubzilla-6c178d44858bbdfd582d09eb4568d32292c0b2c2.zip |
article feature
Diffstat (limited to 'Zotlabs/Lib')
-rw-r--r-- | Zotlabs/Lib/ThreadItem.php | 12 | ||||
-rw-r--r-- | Zotlabs/Lib/ThreadStream.php | 5 |
2 files changed, 16 insertions, 1 deletions
diff --git a/Zotlabs/Lib/ThreadItem.php b/Zotlabs/Lib/ThreadItem.php index 67a507025..143cc4cc7 100644 --- a/Zotlabs/Lib/ThreadItem.php +++ b/Zotlabs/Lib/ThreadItem.php @@ -105,7 +105,17 @@ class ThreadItem { $mode = $conv->get_mode(); - $edlink = (($item['item_type'] == ITEM_TYPE_CARD) ? 'card_edit' : 'editpost'); + switch($item['item_type']) { + case ITEM_TYPE_CARD: + $edlink = 'card_edit'; + break; + case ITEM_TYPE_ARTICLE: + $edlink = 'article_edit'; + break; + default: + $edlink = 'editpost'; + break; + } if(local_channel() && $observer['xchan_hash'] === $item['author_xchan']) $edpost = array(z_root() . '/' . $edlink . '/' . $item['id'], t('Edit')); diff --git a/Zotlabs/Lib/ThreadStream.php b/Zotlabs/Lib/ThreadStream.php index 436723f8c..9eebb929c 100644 --- a/Zotlabs/Lib/ThreadStream.php +++ b/Zotlabs/Lib/ThreadStream.php @@ -63,6 +63,11 @@ class ThreadStream { $this->writable = perm_is_allowed($this->profile_owner,$ob_hash,'post_comments'); $this->reload = $_SESSION['return_url']; break; + case 'articles': + $this->profile_owner = \App::$profile['profile_uid']; + $this->writable = perm_is_allowed($this->profile_owner,$ob_hash,'post_comments'); + $this->reload = $_SESSION['return_url']; + break; case 'display': // in this mode we set profile_owner after initialisation (from conversation()) and then // pull some trickery which allows us to re-invoke this function afterward |