diff options
author | Thomas Willingham <beardyunixer@beardyunixer.com> | 2014-09-18 17:08:23 +0100 |
---|---|---|
committer | Thomas Willingham <beardyunixer@beardyunixer.com> | 2014-09-18 17:08:23 +0100 |
commit | 595be9919b0ce85087937985444477189381976c (patch) | |
tree | bc31493095cedd2bcf6a8fd280d1196450439c4e /mod/new_channel.php | |
parent | 65441b95bbf84f8f88445b6352995c9c89beb1f4 (diff) | |
parent | 0b47fb9a91b58147e616ea75a23dea0d431c40f8 (diff) | |
download | volse-hubzilla-595be9919b0ce85087937985444477189381976c.tar.gz volse-hubzilla-595be9919b0ce85087937985444477189381976c.tar.bz2 volse-hubzilla-595be9919b0ce85087937985444477189381976c.zip |
Merge branch 'master' of https://github.com/friendica/red
Diffstat (limited to 'mod/new_channel.php')
-rw-r--r-- | mod/new_channel.php | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/mod/new_channel.php b/mod/new_channel.php index eafef2c08..8329f0ec3 100644 --- a/mod/new_channel.php +++ b/mod/new_channel.php @@ -1,6 +1,8 @@ <?php require_once('include/identity.php'); +require_once('include/permissions.php'); + function new_channel_init(&$a) { @@ -100,7 +102,7 @@ function new_channel_content(&$a) { $name = ((x($_REQUEST,'name')) ? $_REQUEST['name'] : "" ); $nickname = ((x($_REQUEST,'nickname')) ? $_REQUEST['nickname'] : "" ); - + $privacy_role = ((x($_REQUEST,'permissions_role')) ? $_REQUEST['permissions_role'] : "" ); $o = replace_macros(get_markup_template('new_channel.tpl'), array( @@ -113,6 +115,9 @@ function new_channel_content(&$a) { '$nick_desc' => t('Your nickname will be used to create an easily remembered channel address (like an email address) which you can share with others.'), '$label_import' => t('Or <a href="import">import an existing channel</a> from another location'), '$name' => $name, + '$label_role' => t('Channel Type'), + '$help_role' => t('Please choose a channel type (such as social networking or community forum) and privacy requirements so we can select the best permissions for you'), + '$role_select' => role_selector(($privacy_role) ? $privacy_role : 'social'), '$nickname' => $nickname, '$submit' => t('Create') )); |