From 52dc9421022612edaf662f5fccfec78540833273 Mon Sep 17 00:00:00 2001 From: blackcoder87 Date: Sat, 11 Jan 2025 17:50:52 +0100 Subject: [PATCH] Teams: Use ck-content class and fix error --- application/modules/teams/config/config.php | 2 +- application/modules/teams/views/admin/applications/show.php | 2 +- .../modules/teams/views/admin/applicationshistory/show.php | 2 +- application/modules/teams/views/index/team.php | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/application/modules/teams/config/config.php b/application/modules/teams/config/config.php index 9bc2af743..0f3e3dacb 100644 --- a/application/modules/teams/config/config.php +++ b/application/modules/teams/config/config.php @@ -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', diff --git a/application/modules/teams/views/admin/applications/show.php b/application/modules/teams/views/admin/applications/show.php index 0c44205d6..971954f5a 100644 --- a/application/modules/teams/views/admin/applications/show.php +++ b/application/modules/teams/views/admin/applications/show.php @@ -107,7 +107,7 @@ -
+
alwaysPurify($join->getText()) ?>
diff --git a/application/modules/teams/views/admin/applicationshistory/show.php b/application/modules/teams/views/admin/applicationshistory/show.php index 457a5ed31..d3d146200 100644 --- a/application/modules/teams/views/admin/applicationshistory/show.php +++ b/application/modules/teams/views/admin/applicationshistory/show.php @@ -104,7 +104,7 @@ -
+
alwaysPurify($join->getText()) ?>
diff --git a/application/modules/teams/views/index/team.php b/application/modules/teams/views/index/team.php index 8560ef84b..2f063aaed 100644 --- a/application/modules/teams/views/index/team.php +++ b/application/modules/teams/views/index/team.php @@ -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))); ?>