-
-
Notifications
You must be signed in to change notification settings - Fork 213
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
alt_auth plugin - using e107 as secondary authorisation causes blank page + FIX #3983
Labels
plugin: alt_auth
status: testing required
Someone needs to confirm this issue's existence and write a test to prevent the fix from regressing.
Comments
Moc
added
status: testing required
Someone needs to confirm this issue's existence and write a test to prevent the fix from regressing.
plugin: alt_auth
labels
Oct 27, 2019
Jimmi08
changed the title
alt_auth plugin - using e107 as secondary authorisation causes blank page
alt_auth plugin - using e107 as secondary authorisation causes blank page + FIX
Oct 29, 2019
@CaMer0n @Moc for example, there is used:
but dropdown values for auth_method2 field are:
And fix was: Thanks |
@Jimmi08 Pull-request welcome. Nothing planned. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
plugin: alt_auth
status: testing required
Someone needs to confirm this issue's existence and write a test to prevent the fix from regressing.
If primary authorisation fails, e107 causes blank page
Reason for this is that method value is e107db and not e107 like is done in this test:
in handlers/login.php
if ($method == 'e107' )
this fixed it:
if ($method == 'e107' OR $method == 'e107db')
The text was updated successfully, but these errors were encountered: