From 18d06c6e0cb5943f0835c56e89d821960184d788 Mon Sep 17 00:00:00 2001 From: Paolo Date: Wed, 2 Feb 2022 11:52:08 +0100 Subject: [PATCH] Added commento to an echo in the application/core/FHC_Controller.php because it is not possible to replace the echo --- application/core/FHC_Controller.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/core/FHC_Controller.php b/application/core/FHC_Controller.php index efc06c354..c71d5f6d0 100644 --- a/application/core/FHC_Controller.php +++ b/application/core/FHC_Controller.php @@ -121,7 +121,7 @@ abstract class FHC_Controller extends CI_Controller protected function terminateWithJsonError($message) { header('Content-Type: application/json'); - echo json_encode(error($message)); + echo json_encode(error($message)); // KEEP IT!!! exit; }