From 512c52fbbd1a3a173f6377ba1ec213da144125df Mon Sep 17 00:00:00 2001 From: friendica Date: Thu, 14 Nov 2013 18:08:05 -0800 Subject: [PATCH] making it less complicated to join --- mod/invite.php | 3 ++- mod/pubsites.php | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/mod/invite.php b/mod/invite.php index bceca4515..e23ed7d2a 100644 --- a/mod/invite.php +++ b/mod/invite.php @@ -142,13 +142,14 @@ function invite_content(&$a) { '$default_message' => t('You are cordially invited to join me and some other close friends on the Red Matrix - a revolutionary new decentralised communication and information tool.') . "\r\n" . "\r\n" . $linktxt . (($invonly) ? "\r\n" . "\r\n" . t('You will need to supply this invitation code: $invite_code') . "\r\n" . "\r\n" : '') - . t('Please visit my channel at') . "\r\n" . "\r\n" . z_root() . "/channel/" . $channel['channel_address'] . "\r\n" . "\r\n" . t('Once you have registered (on ANY Red Matrix site - they are all inter-connected), please connect with my Red Matrix channel address:') . "\r\n" . "\r\n" . $ob['xchan_addr'] + . "\r\n" . "\r\n" . t('Click the [Register] link on the following page to join.') . "\r\n" . "\r\n" . z_root() + . "\r\n" . "\r\n" . t('For more information about the Red Matrix Project and why it has the potential to change the internet as we know it, please visit http://getzot.com') . "\r\n" . "\r\n" , '$submit' => t('Submit') )); diff --git a/mod/pubsites.php b/mod/pubsites.php index 0441f928b..e744906fb 100644 --- a/mod/pubsites.php +++ b/mod/pubsites.php @@ -30,7 +30,7 @@ function pubsites_content(&$a) { if($j) { $o .= ''; foreach($j['sites'] as $jj) { - $o .= ''; + $o .= ''; } $o .= '
' . t('Site URL') . '' . t('Access Type') . '' . t('Registration Policy') . '' . t('Location') . '
' . '' . $jj['url'] . '' . '' . $jj['access'] . '' . $jj['register'] . '' . $jj['location'] . '
' . '' . $jj['url'] . '' . '' . $jj['access'] . '' . $jj['register'] . '' . $jj['location'] . '
';