From ab02d8db208174985a48529ef0f82fe9b626b19d Mon Sep 17 00:00:00 2001
From: Jan-Hendrik Willms <tleilax+studip@gmail.com>
Date: Fri, 5 Apr 2024 12:20:18 +0000
Subject: [PATCH] fixes #3956

Closes #3956

Merge request studip/studip!2816
---
 app/views/my_studygroups/_course.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app/views/my_studygroups/_course.php b/app/views/my_studygroups/_course.php
index 93161e2239f..972a5775b73 100644
--- a/app/views/my_studygroups/_course.php
+++ b/app/views/my_studygroups/_course.php
@@ -6,7 +6,7 @@
         </td>
         <td style="text-align: left">
             <a href="<?= URLHelper::getLink('seminar_main.php', ['auswahl' => $group['seminar_id']]) ?>"
-                <?= $group['last_visitdate'] >= $group['chdate'] ? 'style="color: red;"' : '' ?>>
+                <?= $group['last_visitdate'] < $group['chdate'] ? 'style="color: red;"' : '' ?>>
                 <?= htmlReady($group['name']) ?>
             </a>
             <? if ($group['visible'] == 0) : ?>
-- 
GitLab