diff options
author | Treer <treer.git@the-bordello.com> | 2016-05-06 01:34:52 +1000 |
---|---|---|
committer | Treer <treer.git@the-bordello.com> | 2016-05-06 01:44:46 +1000 |
commit | 2174cdcd0ebda4ba62653791489f003bf085f282 (patch) | |
tree | 061fb8b85f05f8dc7829a4a7e8593fce20c223c5 /Zotlabs/Module/Rpost.php | |
parent | 8ffdc4859baa9f2ae9567a4c443dfbb227919167 (diff) | |
download | volse-hubzilla-2174cdcd0ebda4ba62653791489f003bf085f282.tar.gz volse-hubzilla-2174cdcd0ebda4ba62653791489f003bf085f282.tar.bz2 volse-hubzilla-2174cdcd0ebda4ba62653791489f003bf085f282.zip |
Unify permissions dialog for network posts, channel posts, and remote posts
* changes the warning from being about when a post is "sent" to when it's "shared", to match the Share button.
* hyperlinks the "cannot be changed" part of the warning to the help file
* adds some more content to the help file
Diffstat (limited to 'Zotlabs/Module/Rpost.php')
-rw-r--r-- | Zotlabs/Module/Rpost.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Module/Rpost.php b/Zotlabs/Module/Rpost.php index 195949e1c..41889c35c 100644 --- a/Zotlabs/Module/Rpost.php +++ b/Zotlabs/Module/Rpost.php @@ -115,7 +115,7 @@ class Rpost extends \Zotlabs\Web\Controller { 'default_location' => $channel['channel_location'], 'nickname' => $channel['channel_address'], 'lockstate' => (($acl->is_private()) ? 'lock' : 'unlock'), - 'acl' => populate_acl($channel_acl,true,(($channel['channel_r_stream'] & PERMS_PUBLIC) ? t('Public') : '')), + 'acl' => populate_acl($channel_acl,true,(($channel['channel_r_stream'] & PERMS_PUBLIC) ? t('Public') : ''), get_post_aclDialogDescription(), 'acl_dialog_post'), 'bang' => '', 'visitor' => true, 'profile_uid' => local_channel(), |