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

Commit 9555edd

Browse files
committed
Fixed bad call of function 'showTaggedEntry()'
1 parent 9adc8be commit 9555edd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

CHANGELOG.md

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

44
## [Unreleased]
5-
#### Fixed
65
- Allow omitted config for nested class in ProxyFilter
6+
- Fixed bad call of function 'showTaggedEntry()'
77

88
## [v3.7.1]
99
#### Fixed

lib/Disco.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -488,7 +488,7 @@ public static function showTaggedIdPs($t, $tag, $showSignInWith = false)
488488
for ($i = 0; $i < $idpCount % 3; $i++) {
489489
$html .= '<div class="col-md-' . (12 / ($idpCount % 3)) . '">';
490490
$html .= '<div class="metalist list-group">';
491-
$html .= showTaggedEntry($t, $idps[array_keys($idps)[$counter]], $showSignInWith);
491+
$html .= self::showTaggedEntry($t, $idps[array_keys($idps)[$counter]], $showSignInWith);
492492
$html .= '</div>';
493493
$html .= '</div>';
494494
$counter++;

0 commit comments

Comments
 (0)