Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
simplesamlphp
Manage
Activity
Members
Labels
Plan
Jira
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Perun
Perun ProxyIdP
v1
simplesamlphp
Commits
002f182a
Unverified
Commit
002f182a
authored
7 years ago
by
Tim van Dijen
Committed by
GitHub
7 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Remove deprecated call to SimpleSAML_Error_NoPassive
parent
2fafe1fe
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
modules/saml/lib/Auth/Source/SP.php
+4
-1
4 additions, 1 deletion
modules/saml/lib/Auth/Source/SP.php
with
4 additions
and
1 deletion
modules/saml/lib/Auth/Source/SP.php
+
4
−
1
View file @
002f182a
...
...
@@ -522,7 +522,10 @@ class sspmod_saml_Auth_Source_SP extends SimpleSAML_Auth_Source {
if
(
isset
(
$state
[
'isPassive'
])
&&
(
bool
)
$state
[
'isPassive'
])
{
// passive request, we cannot authenticate the user
throw
new
SimpleSAML_Error_NoPassive
(
'Reauthentication required'
);
throw
new
SimpleSAML\Module\saml\Error\NoPassive
(
\SAML2\Constants
::
STATUS_REQUESTER
,
'Reauthentication required'
);
}
// save the state WITHOUT a restart URL, so that we don't try an IdP-initiated login if something goes wrong
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment