From dcf83d5608a51fe2a7aa2f728c20e07af4bbf873 Mon Sep 17 00:00:00 2001 From: Lee <42119604+Leesneaks@users.noreply.github.com> Date: Fri, 6 Nov 2020 14:42:13 +0000 Subject: [PATCH] Update functions.php Moved to bottom of the page so users can call functions code from custom_functions. --- system/functions.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/system/functions.php b/system/functions.php index 3f0d0cdc..ed32442b 100644 --- a/system/functions.php +++ b/system/functions.php @@ -11,7 +11,6 @@ use Twig\Loader\ArrayLoader as Twig_ArrayLoader; defined('MYAAC') or die('Direct access not allowed!'); -require SYSTEM . 'functions_custom.php'; function message($message, $type, $return) { @@ -1378,3 +1377,6 @@ function Outfits_loadfromXML() // validator functions require_once LIBS . 'validator.php'; require_once SYSTEM . 'compat.php'; + +// custom functions +require SYSTEM . 'functions_custom.php';