From 1b27dbcb5f8096a83df49ab13b2ce12b9587ebb1 Mon Sep 17 00:00:00 2001 From: cgfhtw Date: Fri, 19 Jan 2024 13:17:41 +0100 Subject: [PATCH] =?UTF-8?q?Bugfix:=20WH=20Antrag=20Pr=C3=BCfungstest=20kle?= =?UTF-8?q?iner=20vs=20kleiner=20gleich?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- application/models/education/Pruefung_model.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/models/education/Pruefung_model.php b/application/models/education/Pruefung_model.php index 50109d2f1..0d6ad4158 100644 --- a/application/models/education/Pruefung_model.php +++ b/application/models/education/Pruefung_model.php @@ -210,7 +210,7 @@ class Pruefung_model extends DB_Model $this->db->where('ps.prestudent_id', $prestudent_id); if ($max_date !== null) { - $this->db->where('p.datum <', $max_date); + $this->db->where('p.datum <=', $max_date); } if ($studiensemester_kurzbz !== null) { $this->db->where('le.studiensemester_kurzbz', $studiensemester_kurzbz);