From 4668e984c402d8fceb52cdd3b4847497f198b120 Mon Sep 17 00:00:00 2001 From: Marcus Hill Date: Sun, 11 Dec 2022 02:18:14 +0000 Subject: [PATCH] Replace include > include_once --- email_parser_cron.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/email_parser_cron.php b/email_parser_cron.php index d1712db6..c6a8d809 100644 --- a/email_parser_cron.php +++ b/email_parser_cron.php @@ -17,12 +17,12 @@ Relate PRs to https://github.com/itflow-org/itflow/issues/225 & https://forum.it */ // Get ITFlow config & helper functions -include("config.php"); -include("functions.php"); +include_once("config.php"); +include_once("functions.php"); // Get settings for the "default" company $session_company_id = 1; -include("get_settings.php"); +include_once("get_settings.php"); // Check setting enabled if ($config_ticket_email_parse == 0) {