diff options
author | Andrew Manning <tamanning@zoho.com> | 2017-11-24 13:50:29 -0500 |
---|---|---|
committer | Andrew Manning <tamanning@zoho.com> | 2017-11-24 13:50:29 -0500 |
commit | e327b8cb9aa7c31975ba26f8d7bc871b4da59df9 (patch) | |
tree | 74572ff2be8961bd3468f5d67fec1812ed515dbb /Zotlabs/Module/Register.php | |
parent | 64c81ed17474cfa3dfe0e84475a49089c0af0106 (diff) | |
download | volse-hubzilla-e327b8cb9aa7c31975ba26f8d7bc871b4da59df9.tar.gz volse-hubzilla-e327b8cb9aa7c31975ba26f8d7bc871b4da59df9.tar.bz2 volse-hubzilla-e327b8cb9aa7c31975ba26f8d7bc871b4da59df9.zip |
Provide system config option for minimum registration age.
Diffstat (limited to 'Zotlabs/Module/Register.php')
-rw-r--r-- | Zotlabs/Module/Register.php | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Zotlabs/Module/Register.php b/Zotlabs/Module/Register.php index 95e3ca96f..deaee31bf 100644 --- a/Zotlabs/Module/Register.php +++ b/Zotlabs/Module/Register.php @@ -234,7 +234,11 @@ class Register extends \Zotlabs\Web\Controller { if(get_config('system','no_age_restriction')) $label_tos = sprintf( t('I accept the %s for this website'), $toslink); else - $label_tos = sprintf( t('I am over 13 years of age and accept the %s for this website'), $toslink); + $age = get_config('system','minimum_age'); + if(!$age) { + $age = 13; + } + $label_tos = sprintf( t('I am over %s years of age and accept the %s for this website'), $age, $toslink); $enable_tos = 1 - intval(get_config('system','no_termsofservice')); |