Skip to content

Commit

Permalink
Merge branch 'hotfix-2.2.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
olgabrani committed Jul 3, 2019
2 parents d752c66 + 6b9dc02 commit 625b1c2
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [v2.2.1](https://github.com/rciam/simplesamlphp-module-themevanilla/compare/v2.2.0...v2.2.1) - 2019-07-03

### Fixed

- Fix syntax error in disco-tpl.php

## [v2.2.0](https://github.com/rciam/simplesamlphp-module-themevanilla/compare/v2.1.0...v2.2.0) - 2019-06-27

### Added
Expand Down
2 changes: 1 addition & 1 deletion themes/ssp/discopower/disco-tpl.php
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ function showEntry($t, $metadata, $favourite = FALSE, $withIcon = FALSE) {


if($withIcon) {
if(isset($metadata['login_button']['label']) && !isempty($metadata['login_button']['label'])) {
if(isset($metadata['login_button']['label']) && !empty($metadata['login_button']['label'])) {
$label = $metadata['login_button']['label'];
}
$filename = $metadata['login_button']['icon_filename'];
Expand Down
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
simplesamlphp-module-themevanilla
version 2.2.0
version 2.2.1

0 comments on commit 625b1c2

Please sign in to comment.