diff options
author | zotlabs <mike@macgirvin.com> | 2017-07-30 21:55:28 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2017-07-30 21:55:28 -0700 |
commit | e3c8e4f4833b485469616c753cc660e8a55bef29 (patch) | |
tree | 3dd417dd843b995b5e7f43349188d654664871c9 /Zotlabs/Module/Connedit.php | |
parent | 8f3a99ad1f87973d0788596371f311e0e4fa1ee3 (diff) | |
download | volse-hubzilla-e3c8e4f4833b485469616c753cc660e8a55bef29.tar.gz volse-hubzilla-e3c8e4f4833b485469616c753cc660e8a55bef29.tar.bz2 volse-hubzilla-e3c8e4f4833b485469616c753cc660e8a55bef29.zip |
modify connection edit display for channels with no address/webbie
Diffstat (limited to 'Zotlabs/Module/Connedit.php')
-rw-r--r-- | Zotlabs/Module/Connedit.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Zotlabs/Module/Connedit.php b/Zotlabs/Module/Connedit.php index d301c2d45..0f18b432d 100644 --- a/Zotlabs/Module/Connedit.php +++ b/Zotlabs/Module/Connedit.php @@ -841,7 +841,7 @@ class Connedit extends \Zotlabs\Web\Controller { } } else - $locstr = t('none'); + $locstr = $contact['xchan_url']; $clone_warn = ''; $clonable = (in_array($contact['xchan_network'],['zot','rss']) ? true : false); @@ -866,6 +866,7 @@ class Connedit extends \Zotlabs\Web\Controller { '$permcat_new' => t('Add permission role'), '$permcat_enable' => feature_enabled(local_channel(),'permcats'), '$addr' => $contact['xchan_addr'], + '$primeurl' => $contact['xchan_url'], '$section' => $section, '$sections' => $sections, '$vcard' => $vcard, |