2025-05-21_08-21-55Z_Wednesday

This commit is contained in:
Ken Fallon 2025-05-21 10:21:55 +02:00
parent dcb8b9a872
commit 4f3a1657a2
2 changed files with 2 additions and 2 deletions

View File

@ -95,7 +95,7 @@ function executeGET() {
header('Content-Type: application/json'); header('Content-Type: application/json');
header("Content-disposition: inline; filename=hpr_stats.json"); header("Content-disposition: inline; filename=hpr_stats.json");
echo json_encode($asset_array); echo json_encode($asset_array, JSON_NUMERIC_CHECK);
} }

View File

@ -203,7 +203,7 @@ if ($result = mysqli_query($connection, $ep_retrieve)) {
$show_array[$id] = array ( "date" => date('Y-m-d', strtotime($date) ), $show_array[$id] = array ( "date" => date('Y-m-d', strtotime($date) ),
"title" => $title, "title" => $title,
"host" => $host, "host" => $host,
"status" => "Waiting for media" "status" => "Distributing media to the ccdn"
); );
} }
} }