From 9fd73ca34d6183cdc7bc52e8940487a1c512f0c1 Mon Sep 17 00:00:00 2001 From: ma0048 Date: Tue, 17 Mar 2026 13:05:23 +0100 Subject: [PATCH] menu anzeigen auch wenn englischer eintrag nicht vorhanden ist --- application/models/content/Content_model.php | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/application/models/content/Content_model.php b/application/models/content/Content_model.php index 278022b59..fafcd5488 100644 --- a/application/models/content/Content_model.php +++ b/application/models/content/Content_model.php @@ -234,9 +234,7 @@ class Content_model extends DB_Model FROM campus.tbl_content c1 LEFT JOIN - campus.tbl_contentsprache s1 ON c1.content_id=s1.content_id AND s1.sprache=? - WHERE - sichtbar=true + campus.tbl_contentsprache s1 ON c1.content_id=s1.content_id AND s1.sprache=? AND sichtbar=true ) s2 LEFT JOIN campus.tbl_contentsprache s3 USING(content_id, sprache)