From 85db467cff57137b8abee1c7342188895a24a67c Mon Sep 17 00:00:00 2001 From: Alexei Karpenko Date: Wed, 28 Jan 2026 17:50:37 +0100 Subject: [PATCH] issuechecker: layout, commented out _app property --- .../controllers/api/frontend/v1/issues/IssueChecker.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/application/controllers/api/frontend/v1/issues/IssueChecker.php b/application/controllers/api/frontend/v1/issues/IssueChecker.php index d09a01af0..f4ffb4929 100644 --- a/application/controllers/api/frontend/v1/issues/IssueChecker.php +++ b/application/controllers/api/frontend/v1/issues/IssueChecker.php @@ -8,7 +8,7 @@ class IssueChecker extends FHCAPI_Controller protected $person_id; protected $_extensionName = null; protected $_fehlercodes = []; - protected $_app = null; + //protected $_app = null; TODO possible to check for all fehler of app? protected $errors = []; protected $infos = []; @@ -35,7 +35,7 @@ class IssueChecker extends FHCAPI_Controller // get fehler kurzbz from fehlercodes $this->FehlerModel->addSelect('fehler_kurzbz'); - if (!isEmptyArray($this->_fehlercodes))$this->FehlerModel->db->where_in('tbl_fehler.fehlercode', $this->_fehlercodes); + if (!isEmptyArray($this->_fehlercodes)) $this->FehlerModel->db->where_in('tbl_fehler.fehlercode', $this->_fehlercodes); $fehlerKurzbzRes = $this->FehlerModel->load(); if (isError($fehlerKurzbzRes)) $this->terminateWithError(getError($fehlerKurzbzRes), self::ERROR_TYPE_GENERAL);