Skip to content

Commit

Permalink
functions_custom.php are not optional
Browse files Browse the repository at this point in the history
  • Loading branch information
slawkens committed Jan 17, 2025
1 parent 11cee81 commit dc2b5af
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion system/functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -1679,4 +1679,7 @@ function getAccountIdentityColumn(): string
require_once SYSTEM . 'compat/base.php';

// custom functions
require SYSTEM . 'functions_custom.php';
$customFunctions = SYSTEM . 'functions_custom.php';
if (is_file($customFunctions)) {
require $customFunctions;
}

0 comments on commit dc2b5af

Please sign in to comment.