From eda7c24c4ef45c88287ee6580af5d373c3676da9 Mon Sep 17 00:00:00 2001 From: friendica Date: Wed, 25 Dec 2013 16:53:59 -0800 Subject: improve the register text until the new register page is finished --- mod/register.php | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'mod') diff --git a/mod/register.php b/mod/register.php index 3f1fc5400..990cce2ed 100644 --- a/mod/register.php +++ b/mod/register.php @@ -135,12 +135,19 @@ function register_post(&$a) { function register_content(&$a) { + $registration_is = ''; + $other_sites = ''; if(get_config('system','register_policy') == REGISTER_CLOSED) { require_once('mod/pubsites.php'); return pubsites_content($a); } + if(get_config('system','register_policy') == REGISTER_APPROVE) { + $registration_is = t('Registration on this site/hub is by approval only.'); + $other_sites = t('Register at another affiliated site/hub'); + } + $max_dailies = intval(get_config('system','max_daily_registrations')); if($max_dailies) { $r = q("select count(account_id) as total from account where account_created > UTC_TIMESTAMP() - INTERVAL 1 day"); @@ -175,10 +182,14 @@ function register_content(&$a) { $invite_code = ((x($_REQUEST,'invite_code')) ? strip_tags(trim($_REQUEST['invite_code'])) : "" ); + + $o = replace_macros(get_markup_template('register.tpl'), array( '$title' => t('Registration'), + '$reg_is' => $registration_is, '$registertext' => 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.'), '$label_invite' => t('Please enter your invitation code'), -- cgit v1.2.3