From e1bad61a277e8451e04bae41b05dd9496cb30801 Mon Sep 17 00:00:00 2001 From: Alexei Karpenko Date: Mon, 9 Feb 2026 18:53:51 +0100 Subject: [PATCH] api/frontend/Documents.php: removed addmeta debugging calls --- application/controllers/api/frontend/v1/Documents.php | 3 --- 1 file changed, 3 deletions(-) diff --git a/application/controllers/api/frontend/v1/Documents.php b/application/controllers/api/frontend/v1/Documents.php index 39c8b7c84..bb6aa38a4 100644 --- a/application/controllers/api/frontend/v1/Documents.php +++ b/application/controllers/api/frontend/v1/Documents.php @@ -153,12 +153,10 @@ class Documents extends FHCAPI_Controller $this->load->library('form_validation'); if (!$xml) { $xml = $this->input->post_get('xml'); - $this->addMeta('xml', $xml); $this->form_validation->set_rules('xml', 'xml', 'required'); } if (!$xsl) { $xsl = $this->input->post_get('xsl'); - $this->addMeta('xsl', $xsl); $this->form_validation->set_rules('xsl', 'xsl', 'required'); } @@ -200,7 +198,6 @@ class Documents extends FHCAPI_Controller $this->load->model('system/Vorlage_model', 'VorlageModel'); $result = $this->VorlageModel->load($xsl); - $this->addMeta("ress", $result); $vorlage = current($this->getDataOrTerminateWithError($result)); if (!$vorlage) show_404();