From 902862fbc825ffb61b4ed74cc249f8826a82330e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roland=20H=C3=A4der?= Date: Wed, 25 Jul 2018 02:14:43 +0200 Subject: [PATCH] [curweather] CR request: - removed stray space --- curweather/curweather.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curweather/curweather.php b/curweather/curweather.php index c632904d..6852ee70 100644 --- a/curweather/curweather.php +++ b/curweather/curweather.php @@ -71,7 +71,7 @@ function getWeather($loc, $units = 'metric', $lang = 'en', $appid = '', $cacheti $wunit = 'mph'; } - if (trim((string) $res->weather['value']) == trim((string) $res->clouds['name']) ) { + if (trim((string) $res->weather['value']) == trim((string) $res->clouds['name'])) { $desc = (string) $res->clouds['name']; } else { $desc = (string) $res->weather['value'] . ', ' . (string) $res->clouds['name'];