Skip to content

Commit

Permalink
Teams: Use ck-content class and fix error
Browse files Browse the repository at this point in the history
  • Loading branch information
blackcoder87 committed Jan 11, 2025
1 parent 6a2de69 commit 52dc942
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion application/modules/teams/config/config.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class Config extends \Ilch\Config\Install
{
public $config = [
'key' => 'teams',
'version' => '1.24.2',
'version' => '1.24.3',
'icon_small' => 'fa-solid fa-users',
'author' => 'Veldscholten, Kevin',
'link' => 'https://ilch.de',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@
<label class="col-lg-2">
<?=$this->getTrans('text') ?>:
</label>
<div class="col-lg-12">
<div class="col-lg-12 ck-content">
<?=$this->alwaysPurify($join->getText()) ?>
</div>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@
<label class="col-xl-2">
<?=$this->getTrans('text') ?>:
</label>
<div class="col-xl-12">
<div class="col-xl-12 ck-content">
<?=$this->alwaysPurify($join->getText()) ?>
</div>
</div>
2 changes: 1 addition & 1 deletion application/modules/teams/views/index/team.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
$groupList = $groupMapper->getUsersForGroup($team->getGroupId());
$leaderIds = explode(',', $team->getLeader());
$coLeaderIds = explode(',', $team->getCoLeader());
$groupList = array_unique(array_merge($leaderIds, $coLeaderIds, $groupList));
$groupList = array_unique(array_filter(array_merge($leaderIds, $coLeaderIds, $groupList)));
?>
<div class="table-responsive">
<table class="table table-hover table-striped">
Expand Down

0 comments on commit 52dc942

Please sign in to comment.