diff options
author | Mario Vavti <mario@mariovavti.com> | 2016-01-15 10:42:44 +0100 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2016-01-15 10:42:44 +0100 |
commit | 63ee0daac51b8c04123479f2ac91e1762492896f (patch) | |
tree | 8150a3a32799b4f840f920561897cf80531c3f46 /mod | |
parent | b58177e3c60fd6dfbe01549bb7894d9c84d40710 (diff) | |
download | volse-hubzilla-63ee0daac51b8c04123479f2ac91e1762492896f.tar.gz volse-hubzilla-63ee0daac51b8c04123479f2ac91e1762492896f.tar.bz2 volse-hubzilla-63ee0daac51b8c04123479f2ac91e1762492896f.zip |
provide more contact infos and update some protocol type definitions
Diffstat (limited to 'mod')
-rw-r--r-- | mod/connections.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/mod/connections.php b/mod/connections.php index 1635dcee0..08da4a790 100644 --- a/mod/connections.php +++ b/mod/connections.php @@ -231,7 +231,7 @@ function connections_content(&$a) { $status_str = ''; $status = array( - ((intval($rr['abook_pending'])) ? t('Pending') : ''), + ((intval($rr['abook_pending'])) ? t('Pending approval') : ''), ((intval($rr['abook_archived'])) ? t('Archived') : ''), ((intval($rr['abook_hidden'])) ? t('Hidden') : ''), ((intval($rr['abook_ignored'])) ? t('Ignored') : ''), @@ -262,6 +262,9 @@ function connections_content(&$a) { 'edit' => t('Edit'), 'delete' => t('Delete'), 'url' => chanlink_url($rr['xchan_url']), + 'webbie_label' => t('Channel address'), + 'webbie' => $rr['xchan_addr'], + 'network_label' => t('Network'), 'network' => network_to_name($rr['xchan_network']), 'public_forum' => ((intval($rr['xchan_pubforum'])) ? true : false), 'status_label' => t('Status'), |