From bc3002bf863313ace6efba7a9c7835f878d9350b Mon Sep 17 00:00:00 2001 From: int2001 Date: Mon, 31 Jul 2023 09:13:28 +0000 Subject: [PATCH] Fixed params when calling webadif via cron --- application/controllers/Webadif.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/controllers/Webadif.php b/application/controllers/Webadif.php index a958f402..7d1f5b48 100644 --- a/application/controllers/Webadif.php +++ b/application/controllers/Webadif.php @@ -49,7 +49,7 @@ class Webadif extends CI_Controller { */ function mass_upload_qsos($station_id, $webadif_api_key, $webadif_api_url, $trusted = false) { $i = 0; - $data['qsos'] = $this->logbook_model->get_webadif_qsos($station_id, $trusted); + $data['qsos'] = $this->logbook_model->get_webadif_qsos($station_id, null, null, $trusted); $errormessages=array(); $CI =& get_instance();