Replace include > include_once

This commit is contained in:
Marcus Hill 2022-12-11 02:18:14 +00:00
parent a12944940b
commit 4668e984c4
1 changed files with 3 additions and 3 deletions

View File

@ -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) {