Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Jens
ISPConfig 3
Commits
c1250ee2
Commit
c1250ee2
authored
Aug 25, 2022
by
Jens
Browse files
Fix
ispconfig/ispconfig3#6380
: Mailusers cannot login.
parent
14769ef4
Pipeline
#11906
passed with stage
in 6 minutes and 45 seconds
Changes
1
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
interface/web/login/index.php
View file @
c1250ee2
...
...
@@ -140,7 +140,7 @@ function process_login_request(app $app, &$error, $conf, $module)
}
else
{
//* Do 2FA authentication
if
(
$user
[
'otp_type'
]
!=
'none'
)
{
if
(
isset
(
$user
[
'otp_type'
])
and
$user
[
'otp_type'
]
!=
'none'
)
{
//* Save session in pending state and destroy original session
$_SESSION
[
's_pending'
]
=
$_SESSION
[
's'
];
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment