Add covering element to JSON output

pull/2503/head
phl0 2023-09-19 17:56:20 +02:00
rodzic 525481a990
commit 55498f8bec
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 48EA1E640798CA9A
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -16,7 +16,7 @@ class Sattimers extends CI_Controller {
];
$url = 'https://www.df2et.de/tevel/api.php';
$json = file_get_contents($url);
$data['activations'] = json_decode($json, true);
$data['activations'] = json_decode($json, true)['data'];
$data['page_title'] = "Satellite Timers";
$this->load->view('interface_assets/header', $data);