Skip to content

Commit

Permalink
Update IdpGlobal.php
Browse files Browse the repository at this point in the history
fixed user search filter issue
  • Loading branch information
kalyan312 authored Apr 24, 2022
1 parent 366b3e3 commit 4c03f88
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/SDK/Wso2Idp/IdpGlobal.php
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public function endpointUserFiltering($args){
$countPerPage = $args['count'] ?? 10;
$filter = null;
if(isset($args['filter'])){
'&filter='. $args['filter'];
$filter .= '&filter=' . $args['filter'];
}
$startFrom = ($pageNo -1) * $countPerPage;

Expand Down

0 comments on commit 4c03f88

Please sign in to comment.