Skip to content
Snippets Groups Projects
Commit 34b7054b authored by Martin Haase's avatar Martin Haase
Browse files

robustness for ePPNs from persistentIDs

git-svn-id: https://textgridlab.org/svn/textgrid/trunk/middleware/tgauth@5379 7c539038-3410-0410-b1ec-0f2a7bf1c452
parent 583f2832
No related branches found
No related tags found
No related merge requests found
......@@ -582,7 +582,8 @@ class RBACcore implements iRBACcore {
// The given user has to be equal with the sessions
// user.
if( preg_match( "/^" . $inUser . "$/i", $arrSessionEntry['rbacsessionuser'][0] ) ) {
// if( preg_match( "/^" . $inUser . "$/i", $arrSessionEntry['rbacsessionuser'][0] ) ) {
if( strtolower( $inUser ) == strtolower( $arrSessionEntry['rbacsessionuser'][0] ) ) {
$arrRole = $this->authorizedRoles( $inUser, false );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment