diff options
author | redmatrix <git@macgirvin.com> | 2016-02-21 14:54:59 -0800 |
---|---|---|
committer | redmatrix <git@macgirvin.com> | 2016-02-21 14:54:59 -0800 |
commit | c9252d49f7f756fe734b2bcc456726730a035b1a (patch) | |
tree | 34830836dbaf748b60f0aaa3f8ac2700dbbfef24 /mod/new_channel.php | |
parent | 411abdf8a74a7e6cb1914fd0d9545dd40b75544c (diff) | |
parent | 1fcc863298ec2bb4f4e1f4cf240a72a420863445 (diff) | |
download | volse-hubzilla-c9252d49f7f756fe734b2bcc456726730a035b1a.tar.gz volse-hubzilla-c9252d49f7f756fe734b2bcc456726730a035b1a.tar.bz2 volse-hubzilla-c9252d49f7f756fe734b2bcc456726730a035b1a.zip |
Merge https://github.com/redmatrix/hubzilla into pending_merge
Diffstat (limited to 'mod/new_channel.php')
-rw-r--r-- | mod/new_channel.php | 14 |
1 files changed, 3 insertions, 11 deletions
diff --git a/mod/new_channel.php b/mod/new_channel.php index 89a03714b..577137c37 100644 --- a/mod/new_channel.php +++ b/mod/new_channel.php @@ -8,7 +8,6 @@ function new_channel_init(&$a) { $cmd = ((argc() > 1) ? argv(1) : ''); - if($cmd === 'autofill.json') { require_once('library/urlify/URLify.php'); $result = array('error' => false, 'message' => ''); @@ -59,7 +58,6 @@ function new_channel_init(&$a) { } - function new_channel_post(&$a) { $arr = $_POST; @@ -94,12 +92,6 @@ function new_channel_post(&$a) { } - - - - - - function new_channel_content(&$a) { $acc = $a->get_account(); @@ -136,9 +128,9 @@ function new_channel_content(&$a) { $role = array('permissions_role' , t('Channel role and privacy'), ($privacy_role) ? $privacy_role : 'social', t('Select a channel role with your privacy requirements.') . ' <a href="help/roles" target="_blank">' . t('Read more about roles') . '</a>',get_roles()); $o = replace_macros(get_markup_template('new_channel.tpl'), array( - '$title' => t('Create a Channel'), - '$desc' => t('A channel is your identity on the grid. It can represent a person, a blog, or a forum to name a few. Channels can make connections with other channels to share information with highly detailed permissions.'), - '$label_import' => t('Or <a href="import">import an existing channel</a> from another location'), + '$title' => t('Create Channel'), + '$desc' => t('A channel is your identity on this network. It can represent a person, a blog, or a forum to name a few. Channels can make connections with other channels to share information with highly detailed permissions.'), + '$label_import' => t('or <a href="import">import an existing channel</a> from another location.'), '$name' => $name, '$role' => $role, '$default_role' => $default_role, |