From 0997282077cabfb51cd1de499d2a3494c163f832 Mon Sep 17 00:00:00 2001 From: johnnyq Date: Mon, 26 Feb 2024 12:28:21 -0500 Subject: [PATCH] Fix broken link logs.php to admin_logs.php --- cron.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cron.php b/cron.php index 9a5b4454..020c0960 100644 --- a/cron.php +++ b/cron.php @@ -969,7 +969,7 @@ if ($config_telemetry > 0 OR $config_telemetry = 2) { */ // Send Alert to inform Cron was run -mysqli_query($mysqli, "INSERT INTO notifications SET notification_type = 'Cron', notification = 'Cron successfully executed', notification_action = 'logs.php'"); +mysqli_query($mysqli, "INSERT INTO notifications SET notification_type = 'Cron', notification = 'Cron successfully executed', notification_action = 'admin_logs.php'"); // Logging mysqli_query($mysqli, "INSERT INTO logs SET log_type = 'Cron', log_action = 'Ended', log_description = 'Cron executed successfully'");