Skip to content

Commit

Permalink
setup fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Praesidiarius committed Feb 29, 2020
1 parent c58091b commit d506f44
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "onePlace User Module",
"type": "oneplace-module",
"license": "BSD-3-Clause",
"version": "1.0.19",
"version": "1.0.20",
"keywords": [
"laminas",
"mvc",
Expand Down
2 changes: 1 addition & 1 deletion src/Module.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ class Module
*
* @since 1.0.0
*/
const VERSION = '1.0.19';
const VERSION = '1.0.20';

/**
* Load module config file
Expand Down
8 changes: 7 additions & 1 deletion view/one-place/user/user/index.phtml
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
<?php
use Application\Controller\CoreController;

$sIcon = (array_key_exists('user-icon',CoreController::$aGlobalSettings))
? CoreController::$aGlobalSettings['user-icon'] : '';
?>
<div class="card">
<div class="card-header">
<?= $this->partial('partial/indexheader',['sTitle'=>'Users']) ?>
<?= $this->partial('partial/indexheader',['sTitle'=>'Users','sIcon' => $sIcon]) ?>
</div>
<div class="card-body py-0">
<?php if ($iSeatsLeft != -1) { ?>
Expand Down

0 comments on commit d506f44

Please sign in to comment.