From 7fecad205729db0a2911b2dde1ae3bf84d85e5ce Mon Sep 17 00:00:00 2001 From: int2001 Date: Tue, 9 Sep 2025 05:04:58 +0000 Subject: [PATCH] Set proper last_run for DCL-Cron --- application/controllers/Dcl.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/controllers/Dcl.php b/application/controllers/Dcl.php index 5bf9b40c8..87449d46a 100644 --- a/application/controllers/Dcl.php +++ b/application/controllers/Dcl.php @@ -90,7 +90,7 @@ class Dcl extends CI_Controller { // set the last run in cron table for the correct cron id $this->load->model('cron_model'); - $this->cron_model->set_last_run($this->router->class.'_'.$this->router->method); + $this->cron_model->set_last_run('sync_dcl'); // Get Station Profile Data $this->load->model('Stations');