From f94e299bebf35f7b28e4e6e6ae7c46ae8f2f0614 Mon Sep 17 00:00:00 2001 From: "CHIEFSOFT\\ameye" Date: Wed, 21 Aug 2024 17:14:46 -0400 Subject: [PATCH] removed actions --- www-api/app/Controllers/WrenchJobs.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/www-api/app/Controllers/WrenchJobs.php b/www-api/app/Controllers/WrenchJobs.php index 3971512d..63a94cb4 100644 --- a/www-api/app/Controllers/WrenchJobs.php +++ b/www-api/app/Controllers/WrenchJobs.php @@ -15,7 +15,7 @@ class WrenchJobs extends BaseController public function getJobsData() { $raw_json = file_get_contents('php://input'); $in = json_decode($raw_json, true); - //$in["action"] = WRENCHBOARD_ACCOUNT_JOBLIST; dont send this line , the formater will be confused + //$in["action"] = WRENCHBOARD_ACCOUNT_JOBLIST; dont send this line , the formater will be confused $out=[]; $endpoint = "JOB_DATA-". $in["uid"]; @@ -25,7 +25,7 @@ class WrenchJobs extends BaseController $out = $this->APIcall('GET', $local_url, $in); $this->saveCache($endpoint,$out,15000); $out['internal_return'] = 0; // just backwad comaptobility - log_message('critical', "***** ***** WrenchJobs::getJobsData Cache Done:::Ret ". $ret); + log_message('critical', "***** ***** WrenchJobs::getJobsData Cache Done:::Ret "); } log_message('critical', "***** ***** WrenchJobs::getJobsData Ret "); return $this->respond( $this->summaryReturnData($in,$out), 200);