From c32c47785efac342b3fad0fbe35f60ec0a38fb2b Mon Sep 17 00:00:00 2001 From: johnnyq Date: Sat, 19 Oct 2024 16:13:36 -0400 Subject: [PATCH] Fix notification action log path for cron successully run --- cron.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cron.php b/cron.php index 56799ec8..778eb982 100644 --- a/cron.php +++ b/cron.php @@ -968,7 +968,7 @@ if ($updates->current_version !== $updates->latest_version) { */ // Send Alert to inform Cron was run -mysqli_query($mysqli, "INSERT INTO notifications SET notification_type = 'Cron', notification = 'Cron successfully executed', notification_action = 'admin_logs.php'"); +mysqli_query($mysqli, "INSERT INTO notifications SET notification_type = 'Cron', notification = 'Cron successfully executed', notification_action = 'admin_audit_log.php'"); // Logging mysqli_query($mysqli, "INSERT INTO logs SET log_type = 'Cron', log_action = 'Ended', log_description = 'Cron executed successfully'");