Fix su function_exists
This commit is contained in:
parent
d1c18fecad
commit
c16050ec2d
|
@ -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 '
|
||||
|
|
|
@ -136,7 +136,7 @@ function customDatabase()
|
|||
return $results;
|
||||
}
|
||||
|
||||
function custom()
|
||||
function customComponents()
|
||||
{
|
||||
$database_check = customDatabase();
|
||||
$structure_check = customStructure();
|
||||
|
|
Loading…
Reference in New Issue