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

* Bugfix: Missing loop variable...

git-svn-id: https://textgridlab.org/svn/textgrid/trunk/middleware/tgauth@2779 7c539038-3410-0410-b1ec-0f2a7bf1c452
parent c37b0a13
No related branches found
No related tags found
No related merge requests found
......@@ -715,7 +715,7 @@ class RBACcore implements iRBACcore {
if( !preg_match( "/^" . $inRole . "$/i", $arrSessionEntry['rbacsessionrole'][$i] ) ) {
$arrActiveRole[] = $arrSessionEntry['rbacsessionrole'];
$arrActiveRole[] = $arrSessionEntry['rbacsessionrole'][$i];
}
......@@ -2199,7 +2199,7 @@ class RBACcore implements iRBACcore {
// ## removeDuplicates ##############################################
protected final function removeDuplicates( Array $inArray ) {
public final function removeDuplicates( Array $inArray ) {
$arrOut = Array();
$element = "";
......
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