From d1172e512b887594da6e772e20ec1836b57ae735 Mon Sep 17 00:00:00 2001 From: johnnyq Date: Tue, 31 Jan 2023 17:01:09 -0500 Subject: [PATCH] Fixed and caught an issue where Cron would send telemetry data even with telemetry off --- cron.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cron.php b/cron.php index 24d3a031..85029bce 100644 --- a/cron.php +++ b/cron.php @@ -413,7 +413,7 @@ while($row = mysqli_fetch_array($sql_companies)){ } //End if Autosend is on } //End Recurring Invoices Loop - if($config_telemetry = 1){ + if($config_telemetry == 1){ $current_version = exec("git rev-parse HEAD");