Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
mahara
mahara
Commits
635ab613
Commit
635ab613
authored
Mar 24, 2010
by
Piers Harding
Browse files
auth/saml: fix problem with distinction of users between authinstances.
parent
82b9ba15
Changes
1
Hide whitespace changes
Inline
Side-by-side
htdocs/auth/saml/lib.php
View file @
635ab613
...
...
@@ -134,11 +134,8 @@ class AuthSaml extends Auth {
throw
new
AccessDeniedException
();
}
$user
->
find_by_username
(
$remoteuser
);
}
else
{
$user
->
find_by_instanceid_username
(
$this
->
instanceid
,
$remoteuser
,
true
);
}
$user
->
find_by_username
(
$remoteuser
);
if
(
$user
->
get
(
'suspendedcusr'
))
{
die_info
(
get_string
(
'accountsuspended'
,
'mahara'
,
strftime
(
get_string
(
'strftimedaydate'
),
$user
->
get
(
'suspendedctime'
)),
$user
->
get
(
'suspendedreason'
)));
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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