aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module/Register.php
diff options
context:
space:
mode:
authorzotlabs <mike@macgirvin.com>2018-05-12 16:41:09 -0700
committerzotlabs <mike@macgirvin.com>2018-05-12 16:41:09 -0700
commit7991db14be2078aacc4f731214c36e3fa3c6c507 (patch)
tree89427a30f32a4d8e46da0c3a4ab8adba8dcfab8a /Zotlabs/Module/Register.php
parentbcaa0dacdf94670401c3eedf1e648415d2c3ed06 (diff)
downloadvolse-hubzilla-7991db14be2078aacc4f731214c36e3fa3c6c507.tar.gz
volse-hubzilla-7991db14be2078aacc4f731214c36e3fa3c6c507.tar.bz2
volse-hubzilla-7991db14be2078aacc4f731214c36e3fa3c6c507.zip
hubzilla issue #1045 - display pubsites link in info area if invite only
Diffstat (limited to 'Zotlabs/Module/Register.php')
-rw-r--r--Zotlabs/Module/Register.php12
1 files changed, 10 insertions, 2 deletions
diff --git a/Zotlabs/Module/Register.php b/Zotlabs/Module/Register.php
index 6bdffd034..4ab1ccd81 100644
--- a/Zotlabs/Module/Register.php
+++ b/Zotlabs/Module/Register.php
@@ -201,6 +201,15 @@ class Register extends \Zotlabs\Web\Controller {
$registration_is = t('Registration on this hub is by approval only.');
$other_sites = t('<a href="pubsites">Register at another affiliated hub.</a>');
}
+
+
+ $invitations = false;
+
+ if(intval(get_config('system','invitation_only'))) {
+ $invitations = true;
+ $registration_is = t('Registration on this hub is by invitation only.');
+ $other_sites = t('<a href="pubsites">Register at another affiliated hub.</a>');
+ }
$max_dailies = intval(get_config('system','max_daily_registrations'));
if($max_dailies) {
@@ -270,8 +279,7 @@ class Register extends \Zotlabs\Web\Controller {
'$reg_is' => $registration_is,
'$registertext' => bbcode(get_config('system','register_text')),
'$other_sites' => $other_sites,
- '$invitations' => get_config('system','invitation_only'),
- '$invite_desc' => t('Membership on this site is by invitation only.'),
+ '$invitations' => $invitations,
'$invite_code' => $invite_code,
'$auto_create' => $auto_create,
'$name' => $name,