Skip to content
This repository was archived by the owner on Sep 19, 2022. It is now read-only.

Commit 6a73022

Browse files
committed
Fixed bug in filtering IdPs on DS
* Fixed bug in filtering IdPs on DS from the commit: 71bebba * Problem: Result of method doFilter was not assigned to var (cherry picked from commit c8ecdf9)
1 parent 74ee5b1 commit 6a73022

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
All notable changes to this project will be documented in this file.
33

44
## [Unreleased]
5+
#### Fixed
6+
- Fixed bug in filtering IdPs on DS
57

68
## [v3.5.0]
79
#### Changed

lib/Disco.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ protected function filterList($list)
149149
|| !$this->originalsp['disco.doNotFilterIdps']
150150
) {
151151
$list = parent::filterList($list);
152-
self::doFilter($list, $disableWhitelisting, $this->scopedIDPList);
152+
$list = self::doFilter($list, $disableWhitelisting, $this->scopedIDPList);
153153
$list = $this->greylistingPerSP($list, $this->originalsp);
154154
}
155155

0 commit comments

Comments
 (0)