aboutsummaryrefslogtreecommitdiffstats
path: root/mod
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2016-03-22 02:06:19 +0100
committerMario Vavti <mario@mariovavti.com>2016-03-22 02:06:19 +0100
commit97e1a6dfde7d8d8e23d463ab22f24011cbce0d8c (patch)
tree276d437338bd93fe8957d6193ab36e0c03bd088c /mod
parent28599fe652de514217e332382f7e5622cb68cc9f (diff)
downloadvolse-hubzilla-97e1a6dfde7d8d8e23d463ab22f24011cbce0d8c.tar.gz
volse-hubzilla-97e1a6dfde7d8d8e23d463ab22f24011cbce0d8c.tar.bz2
volse-hubzilla-97e1a6dfde7d8d8e23d463ab22f24011cbce0d8c.zip
whip mod manage into shape
Diffstat (limited to 'mod')
-rw-r--r--mod/manage.php11
1 files changed, 3 insertions, 8 deletions
diff --git a/mod/manage.php b/mod/manage.php
index 671003efd..1f7c26cd8 100644
--- a/mod/manage.php
+++ b/mod/manage.php
@@ -134,9 +134,7 @@ function manage_content(&$a) {
}
}
- $links = array(
- array( 'new_channel', t('Create a new channel'), t('Create a new channel'))
- );
+ $create = array( 'new_channel', t('Create a new channel'), t('Create New'));
$delegates = q("select * from abook left join xchan on abook_xchan = xchan_hash where
abook_channel = %d and (abook_their_perms & %d) > 0",
@@ -156,8 +154,6 @@ function manage_content(&$a) {
$delegates = null;
}
-
-
$o = replace_macros(get_markup_template('channels.tpl'), array(
'$header' => t('Channel Manager'),
'$msg_selected' => t('Current Channel'),
@@ -165,17 +161,16 @@ function manage_content(&$a) {
'$desc' => t('Switch to one of your channels by selecting it.'),
'$msg_default' => t('Default Channel'),
'$msg_make_default' => t('Make Default'),
- '$links' => $links,
+ '$create' => $create,
'$all_channels' => $channels,
'$mail_format' => t('%d new messages'),
'$intros_format' => t('%d new introductions'),
'$channel_usage_message' => $channel_usage_message,
- '$delegate_header' => t('Delegated Channels'),
+ '$delegated_desc' => t('Delegated Channel'),
'$delegates' => $delegates,
));
-
return $o;
}