diff options
author | Mario <mario@mariovavti.com> | 2024-06-13 09:37:21 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2024-06-13 09:37:21 +0000 |
commit | 6a63a38e8d4423fa317ce3e3bc6d537b098821c4 (patch) | |
tree | 53768900bf54f7faadd921917f67a3bd7c942a4e /boot.php | |
parent | 088a87914f7bbe5bb45ea125ae3c1b1a8ef0ed80 (diff) | |
parent | ac1e20b1880d57aab2048e670449768d51dbc0b0 (diff) | |
download | volse-hubzilla-6a63a38e8d4423fa317ce3e3bc6d537b098821c4.tar.gz volse-hubzilla-6a63a38e8d4423fa317ce3e3bc6d537b098821c4.tar.bz2 volse-hubzilla-6a63a38e8d4423fa317ce3e3bc6d537b098821c4.zip |
Merge branch 'fix-test-warnings' into 'dev'
Fix test warnings
See merge request hubzilla/core!2134
Diffstat (limited to 'boot.php')
-rw-r--r-- | boot.php | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1760,9 +1760,9 @@ function login($register = false, $form_id = 'main_login', $hiddens = false, $lo '$login' => t('Login'), '$remote_login' => t('Remote Authentication'), '$form_id' => $form_id, - '$lname' => [$form_id . '_username', $lname_label], - '$lpassword' => [$form_id . '_password', t('Password')], - '$remember_me' => [$form_id . '_remember', t('Remember me'), '', '', [t('No'), t('Yes')]], + '$lname' => [$form_id . '_username', $lname_label, null, null, null, null], + '$lpassword' => [$form_id . '_password', t('Password'), null, null, null, null], + '$remember_me' => [$form_id . '_remember', t('Remember me'), '', '', [t('No'), t('Yes')], null, null], '$hiddens' => $hiddens, '$register' => $reg, '$lostpass' => t('Forgot your password?'), |