Bugfix: Return no events instead of error if the student is/was not enrolled in a timeframe

This commit is contained in:
chfhtw
2025-07-25 13:17:41 +02:00
parent 76248175f7
commit d59b623cb4
+1 -1
View File
@@ -109,7 +109,7 @@ class StundenplanLib{
$stundenplan_query = $this->_ci->StundenplanModel->getStundenplanQuery($start_date, $end_date, $semester_range, $benutzer_gruppen, $student_lehrverband);
if(!$stundenplan_query)
{
return error([]);
return success([]);
}