diff --git a/html/index.php b/html/index.php
index 81f6354..f77a795 100644
--- a/html/index.php
+++ b/html/index.php
@@ -19,7 +19,7 @@ $data = $pdo->query($sql)->fetchAll(PDO::FETCH_ASSOC)[0];
echo '
Insgesammt hat das Coronavirus '.$data['total'].' Menschen infiziert. Von dieser Zahl sind noch '.$data['active'].' Fälle offen. Von den restlichen sind '.$data['cured'].' geheilt und '.$data['dead'].' gestorben. Das entspricht einer theorethischen leathalität von '.number_format(intval($data['dead'])/intval($data['cured'])*100, 4).'%, wenn man die Dunkelziffer der Infektionen ausser acht lässt.
';
//grafik
-$sql = "SELECT scans.id, place, amount, time FROM `data` inner join scans on scans.id=data.scan WHERE place like 'Deutschland.' group by amount order by time asc ";
+$sql = "SELECT scans.id, place, amount, time FROM `data` inner join scans on scans.id=data.scan WHERE place like 'Germany.' group by amount order by time asc ";
$stmt = $pdo->query($sql);
$data = $stmt->fetchAll(PDO::FETCH_ASSOC);
?>
@@ -112,7 +112,7 @@ $data = $stmt->fetchAll(PDO::FETCH_ASSOC);
Fallzahlen in Deutschland - Nach Robert Koch Institut';
echo '';
echo 'Platz | Land | kumulative Fallzahl |
';