Components page DB connect fix

main
Yasen Pramatarov 2024-11-14 12:58:41 +02:00
parent ade26b7267
commit 1ad19492f6
1 changed files with 7 additions and 1 deletions

View File

@ -3,7 +3,13 @@
require '../app/classes/component.php'; require '../app/classes/component.php';
// connect to database // connect to database
$db = connectDB($config, 'jilo', $platformDetails[0]['jilo_database'], $platform_id); $response = connectDB($config, 'jilo', $platformDetails[0]['jilo_database'], $platform_id);
if ($response['db'] === null) {
$error = $response['error'];
include '../app/templates/block-message.php';
} else {
$db = $response['db'];
}
// specify time range // specify time range
include '../app/helpers/time_range.php'; include '../app/helpers/time_range.php';