Fix su function_exists

This commit is contained in:
Dasc3er 2020-10-12 09:19:03 +02:00
parent d1c18fecad
commit c16050ec2d
2 changed files with 3 additions and 3 deletions

View File

@ -20,8 +20,8 @@
include_once __DIR__.'/../../core.php';
// Personalizzazioni di codice
if (function_exists(custom)) {
$custom = custom();
if (function_exists('customComponents')) {
$custom = customComponents();
$tables = customTables();
if (!empty($custom) || !empty($tables)) {
echo '

View File

@ -136,7 +136,7 @@ function customDatabase()
return $results;
}
function custom()
function customComponents()
{
$database_check = customDatabase();
$structure_check = customStructure();