Skip to content

Commit

Permalink
Fix syntax error in disco-tpl.php
Browse files Browse the repository at this point in the history
  • Loading branch information
Nick Evangelou authored and olgabrani committed Jul 3, 2019
1 parent 30e76cd commit 073a330
Showing 1 changed file with 1 addition and 1 deletion.
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

0 comments on commit 073a330

Please sign in to comment.