diff options
| author | Jan-Hendrik Willms <tleilax+studip@gmail.com> | 2021-11-23 14:49:44 +0000 |
|---|---|---|
| committer | Jan-Hendrik Willms <tleilax+studip@gmail.com> | 2021-11-23 14:49:44 +0000 |
| commit | d2bbb76d7a19383598ffee534fce84a4f5f95ee4 (patch) | |
| tree | 042742988e07c40e5c8f268d5000c99ffe6c6c86 /lib/modules/CoreParticipants.class.php | |
| parent | 550ad14d630d9d7de01c5b99371f518f1795212a (diff) | |
fixes #78
Diffstat (limited to 'lib/modules/CoreParticipants.class.php')
| -rw-r--r-- | lib/modules/CoreParticipants.class.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/modules/CoreParticipants.class.php b/lib/modules/CoreParticipants.class.php index 4b9ded5..74ca506 100644 --- a/lib/modules/CoreParticipants.class.php +++ b/lib/modules/CoreParticipants.class.php @@ -38,7 +38,7 @@ class CoreParticipants extends CorePlugin implements StudipModule $first_nav = reset($sub_nav); $navigation = new Navigation($first_nav->getTitle(), $first_nav->getURL()); - $navigation->setImage(Icon::create('persons', Icon::ROLE_INACTIVE)); + $navigation->setImage(Icon::create('persons', Icon::ROLE_CLICKABLE)); return $navigation; } @@ -55,7 +55,7 @@ class CoreParticipants extends CorePlugin implements StudipModule } $navigation = new Navigation(_('Teilnehmende'), $url); - $navigation->setImage(Icon::create('persons', Icon::ROLE_INACTIVE)); + $navigation->setImage(Icon::create('persons', Icon::ROLE_CLICKABLE)); // Check permission, show no indicator if not at least tutor if (!$GLOBALS['perm']->have_studip_perm('tutor', $course_id, $user_id)) { |
