From 45eca862acd568476b140625a7d88e34952216dd Mon Sep 17 00:00:00 2001 From: Harald Bamberger Date: Tue, 19 May 2026 16:17:14 +0200 Subject: [PATCH] use table alias --- application/models/education/Projektarbeit_model.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/models/education/Projektarbeit_model.php b/application/models/education/Projektarbeit_model.php index 0f0febaab..f167ad0d1 100644 --- a/application/models/education/Projektarbeit_model.php +++ b/application/models/education/Projektarbeit_model.php @@ -46,7 +46,7 @@ class Projektarbeit_model extends DB_Model JOIN lehre.tbl_lehreinheit USING (lehreinheit_id) JOIN lehre.tbl_lehrveranstaltung USING (lehrveranstaltung_id) LEFT JOIN public.tbl_firma USING (firma_id) - LEFT JOIN public.tbl_sprache ON tbl_projektarbeit.sprache = tbl_sprache.sprache + LEFT JOIN public.tbl_sprache ON pa.sprache = tbl_sprache.sprache WHERE pa.student_uid = ?";