Participants page DB connect fix

main
Yasen Pramatarov 2024-11-13 12:56:24 +02:00
parent 7a1f2b841e
commit ade26b7267
1 changed files with 7 additions and 1 deletions

View File

@ -3,7 +3,13 @@
require '../app/classes/participant.php';
// 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
include '../app/helpers/time_range.php';