Skip to content

Commit

Permalink
Fixed title and region percentage
Browse files Browse the repository at this point in the history
  • Loading branch information
Maxelweb committed Nov 5, 2020
1 parent 8bffe2d commit cbf9407
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion index.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<meta name="description" content="Webapp used to visualize the daily variance of the covid-19 in Italy.">
<link rel="icon" href="res/images/italy.png">
<meta name="author" content="Mariano Sciacco">
<title>Covid 19 - Italia</title>
<title>Covid 19 - Italy</title>
<!-- Bootstrap core CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<!-- Icono icons -->
Expand Down
2 changes: 1 addition & 1 deletion res/pages/regions.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
echo '<tr>
<td>'.$elem["denominazione_regione"].'</td>
<td>'.nformat($elem[$name]).'</td>
<td>'.nformat(($elem[$name]/$current_name_value)*100).'%</td>
<td>'.number_format((($elem[$name]/$current_name_value)*100), 2, ',', '.').'%</td>
<td><small>'.(empty($elem["note"]) ? "-" : $elem["note"]).'</small></td>
</tr>';
}
Expand Down

0 comments on commit cbf9407

Please sign in to comment.