Skip to content

Commit f645fb8

Browse files
committed
Merge branch 'hotfix-2.3.1' into devel
2 parents 9fe8d97 + 47fc858 commit f645fb8

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [v2.3.1](https://github.com/rciam/simplesamlphp-module-themevanilla/compare/v2.3.0...v2.3.1) - 2019-09-12
8+
9+
### Fixed
10+
11+
- Fix bug in IdPs buttons style caused by unclosed html element.
12+
713
## [v2.3.0](https://github.com/rciam/simplesamlphp-module-themevanilla/compare/v2.2.1...v2.3.0) - 2019-08-01
814

915
### Added

themes/ssp/discopower/disco-tpl.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,8 +83,9 @@ function showEntry($t, $metadata, $favourite = FALSE, $withIcon = FALSE) {
8383
$html = '<a class="metaentry ssp-btn ' . $css_button_type . ' ' . $css_classname . '" href="' . $basequerystring . urlencode($metadata['entityid']) . '">';
8484
$html .= '<img alt="Identity Provider" class="entryicon" src="' . SimpleSAML_Module::getModuleURL('themevanilla/resources/images/' . $filename ) . '" />';
8585
if (isset($label)) {
86-
$html .= '<span>' . $label . '</span></a>';
86+
$html .= '<span>' . $label . '</span>';
8787
}
88+
$html .= '</a>';
8889
}
8990
else {
9091
$html = '<a class="metaentry " href="' . $basequerystring . urlencode($metadata['entityid']) . '">';

version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
simplesamlphp-module-themevanilla
2-
version 2.3.0
2+
version 2.3.1

0 commit comments

Comments
 (0)