diff --git a/lib/Controller/WeatherController.php b/lib/Controller/WeatherController.php index d907a65..890a2dc 100644 --- a/lib/Controller/WeatherController.php +++ b/lib/Controller/WeatherController.php @@ -105,6 +105,7 @@ class WeatherController extends IntermediateController { 'weather' => $forecast['list'][$i]['weather'][0]['description'], 'temperature' => $forecast['list'][$i]['main']['temp'], 'pressure' => $forecast['list'][$i]['main']['pressure'], + 'humidity' => $forecast['list'][$i]['main']['humidity'], 'wind' => array( 'speed' => $forecast['list'][$i]['wind']['speed'], 'desc' => $this->windDegToString($forecast['list'][$i]['wind']['deg']) diff --git a/templates/main.php b/templates/main.php index 1ef6e51..ab37da5 100644 --- a/templates/main.php +++ b/templates/main.php @@ -67,13 +67,15 @@