From ca4865011d550b2a0fda7f13946007f440dfc0a3 Mon Sep 17 00:00:00 2001 From: SimonGschnell Date: Fri, 20 Sep 2024 11:21:59 +0200 Subject: [PATCH] adds missing parameters to the getContent function --- application/controllers/api/frontend/v1/Cms.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/controllers/api/frontend/v1/Cms.php b/application/controllers/api/frontend/v1/Cms.php index 1c2920dc6..9b45fe81d 100644 --- a/application/controllers/api/frontend/v1/Cms.php +++ b/application/controllers/api/frontend/v1/Cms.php @@ -80,7 +80,7 @@ class Cms extends FHCAPI_Controller $sprache = $this->input->get("sprache",TRUE); $sichtbar = $this->input->get("sichtbar",TRUE); - $content = $this->cmslib->getContent($content_id); + $content = $this->cmslib->getContent($content_id, $version, $sprache, $sichtbar); $content = $this->getDataOrTerminateWithError($content);