aboutsummaryrefslogtreecommitdiffstats
path: root/boot.php
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2021-06-04 07:43:23 +0000
committerMario <mario@mariovavti.com>2021-06-04 07:43:23 +0000
commitd882bad706542eb1e64c24567b8bf112f6cebb89 (patch)
tree46410934b7c7688fc2f8cc020939a37cb61b4926 /boot.php
parente5c8273f7284fe065e88b8d7ddac2ea55964f3f0 (diff)
downloadvolse-hubzilla-d882bad706542eb1e64c24567b8bf112f6cebb89.tar.gz
volse-hubzilla-d882bad706542eb1e64c24567b8bf112f6cebb89.tar.bz2
volse-hubzilla-d882bad706542eb1e64c24567b8bf112f6cebb89.zip
fix login name label for the case when system.verify_email is disabled
Diffstat (limited to 'boot.php')
-rw-r--r--boot.php15
1 files changed, 9 insertions, 6 deletions
diff --git a/boot.php b/boot.php
index bb2d094ea..66ccd4309 100644
--- a/boot.php
+++ b/boot.php
@@ -1710,21 +1710,24 @@ function login($register = false, $form_id = 'main-login', $hiddens = false, $lo
$_SESSION['login_return_url'] = App::$query_string;
}
- $o .= replace_macros($tpl,array(
+ $email_required = get_config('system', 'verify_email');
+ $lname_label = (($email_required) ? t('Email or nickname') : t('Nickname'));
+
+ $o .= replace_macros($tpl, [
'$dest_url' => $dest_url,
'$login_page' => $login_page,
'$logout' => t('Logout'),
'$login' => t('Login'),
'$remote_login' => t('Remote Authentication'),
'$form_id' => $form_id,
- '$lname' => array('username', t('Login/Email') , '', ''),
- '$lpassword' => array('password', t('Password'), '', ''),
- '$remember_me' => array((($login_page) ? 'remember' : 'remember_me'), t('Remember me'), '', '',array(t('No'),t('Yes'))),
+ '$lname' => ['username', $lname_label],
+ '$lpassword' => ['password', t('Password')],
+ '$remember_me' => [(($login_page) ? 'remember' : 'remember_me'), t('Remember me'), '', '', [t('No'),t('Yes')]],
'$hiddens' => $hiddens,
'$register' => $reg,
'$lostpass' => t('Forgot your password?'),
- '$lostlink' => t('Password Reset'),
- ));
+ '$lostlink' => (($email_required) ? t('Password Reset') : ''),
+ ]);
/**
* @hooks login_hook